composer.json 781 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "hyperf/command",
  3. "type": "library",
  4. "license": "MIT",
  5. "keywords": [
  6. "php",
  7. "swoole",
  8. "command"
  9. ],
  10. "description": "Command for hyperf",
  11. "autoload": {
  12. "psr-4": {
  13. "Hyperf\\Command\\": "src/"
  14. }
  15. },
  16. "autoload-dev": {
  17. "psr-4": {
  18. "HyperfTest\\Command\\": "tests/"
  19. }
  20. },
  21. "require": {
  22. "php": ">=7.2",
  23. "hyperf/utils": "~2.2.0",
  24. "psr/event-dispatcher": "^1.0",
  25. "symfony/console": ">=5.0 <5.4.12"
  26. },
  27. "suggest": {
  28. "hyperf/di": "Required to use annotations."
  29. },
  30. "config": {
  31. "sort-packages": true
  32. },
  33. "extra": {
  34. "branch-alias": {
  35. "dev-master": "2.2-dev"
  36. }
  37. }
  38. }