composer.json 887 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "lettered/support",
  3. "description": "lettered support package",
  4. "keywords": ["goeasy", "opt", "socket", "auth"],
  5. "type": "library",
  6. "support": {
  7. "issues": "https://github.com/lettered/support/issues",
  8. "source": "https://github.com/lettered/support"
  9. },
  10. "authors": [
  11. {
  12. "name": "lettered",
  13. "email": "me@lettered.cn"
  14. }
  15. ],
  16. "require": {
  17. "php": ">=7.1.3",
  18. "ext-openssl": "*",
  19. "ext-simplexml":"*",
  20. "ext-libxml": "*",
  21. "ext-json": "*",
  22. "ext-bcmath": "*"
  23. },
  24. "require-dev": {
  25. "phpunit/phpunit": "^7.5"
  26. },
  27. "autoload": {
  28. "psr-4": {
  29. "Lettered\\Support\\": "src"
  30. }
  31. },
  32. "autoload-dev": {
  33. "psr-4": {
  34. "Lettered\\Support\\Tests\\": "tests"
  35. }
  36. },
  37. "license": "MIT"
  38. }