composer.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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": ">=8.1",
  23. "hyperf/collection": "~3.1.0",
  24. "hyperf/context": "~3.1.0",
  25. "hyperf/contract": "~3.1.0",
  26. "hyperf/coroutine": "~3.1.0",
  27. "hyperf/di": "~3.1.0",
  28. "hyperf/stringable": "~3.1.0",
  29. "hyperf/support": "~3.1.0",
  30. "hyperf/tappable": "~3.1.0",
  31. "psr/event-dispatcher": "^1.0",
  32. "symfony/console": "^5.0|^6.0|^7.0"
  33. },
  34. "suggest": {
  35. "hyperf/di": "Required to use annotations.",
  36. "hyperf/event": "Required to use listeners."
  37. },
  38. "config": {
  39. "sort-packages": true
  40. },
  41. "extra": {
  42. "branch-alias": {
  43. "dev-master": "3.1-dev"
  44. },
  45. "hyperf": {
  46. "config": "Hyperf\\Command\\ConfigProvider"
  47. }
  48. }
  49. }