composer.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "hyperf/process",
  3. "description": "A process component for hyperf.",
  4. "license": "MIT",
  5. "keywords": [
  6. "php",
  7. "hyperf",
  8. "process"
  9. ],
  10. "homepage": "https://hyperf.io",
  11. "support": {
  12. "docs": "https://hyperf.wiki",
  13. "issues": "https://github.com/hyperf/hyperf/issues",
  14. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  15. "source": "https://github.com/hyperf/hyperf"
  16. },
  17. "require": {
  18. "php": ">=7.2",
  19. "psr/container": "^1.0|^2.0",
  20. "psr/event-dispatcher": "^1.0",
  21. "hyperf/contract": "~2.2.0",
  22. "hyperf/utils": "~2.2.0"
  23. },
  24. "suggest": {
  25. "hyperf/di": "Required to use annotations.",
  26. "hyperf/event": "Required to dump the message before and after process.",
  27. "hyperf/framework": "Required to use BootProcessListener."
  28. },
  29. "autoload": {
  30. "psr-4": {
  31. "Hyperf\\Process\\": "src/"
  32. }
  33. },
  34. "autoload-dev": {
  35. "psr-4": {
  36. "HyperfTest\\Process\\": "tests/"
  37. }
  38. },
  39. "config": {
  40. "sort-packages": true
  41. },
  42. "extra": {
  43. "branch-alias": {
  44. "dev-master": "2.2-dev"
  45. },
  46. "hyperf": {
  47. "config": "Hyperf\\Process\\ConfigProvider"
  48. }
  49. }
  50. }