composer.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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": ">=8.1",
  19. "psr/container": "^1.0|^2.0",
  20. "psr/event-dispatcher": "^1.0",
  21. "hyperf/contract": "~3.1.0",
  22. "hyperf/support": "~3.1.0",
  23. "hyperf/utils": "~3.1.0"
  24. },
  25. "suggest": {
  26. "hyperf/di": "Required to use annotations.",
  27. "hyperf/event": "Required to dump the message before and after process.",
  28. "hyperf/framework": "Required to use BootProcessListener."
  29. },
  30. "autoload": {
  31. "psr-4": {
  32. "Hyperf\\Process\\": "src/"
  33. }
  34. },
  35. "autoload-dev": {
  36. "psr-4": {
  37. "HyperfTest\\Process\\": "tests/"
  38. }
  39. },
  40. "config": {
  41. "sort-packages": true
  42. },
  43. "extra": {
  44. "branch-alias": {
  45. "dev-master": "3.1-dev"
  46. },
  47. "hyperf": {
  48. "config": "Hyperf\\Process\\ConfigProvider"
  49. }
  50. }
  51. }