composer.json 546 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "name": "phper666/hyperf-server-command",
  3. "license": "MIT",
  4. "authors": [
  5. {
  6. "name": "liyuzhao",
  7. "email": "562405704@qq.com"
  8. }
  9. ],
  10. "require": {
  11. "php": ">=7.2"
  12. },
  13. "require-dev": {},
  14. "autoload": {
  15. "psr-4": {
  16. "Phper666\\HyperfServiceCommand\\": "src/"
  17. },
  18. "files": [
  19. ]
  20. },
  21. "suggest": {
  22. "hyperf/command": "required hyperf/command ~2.0.0 OR required hyperf/command ~1.1.0"
  23. },
  24. "extra": {
  25. "hyperf": {
  26. "config": "Phper666\\HyperfServiceCommand\\ConfigProvider"
  27. }
  28. }
  29. }