composer.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "hyperf/event",
  3. "description": "an event manager that implements PSR-14.",
  4. "license": "MIT",
  5. "keywords": [
  6. "php",
  7. "swoole",
  8. "hyperf",
  9. "event"
  10. ],
  11. "homepage": "https://hyperf.io",
  12. "support": {
  13. "docs": "https://hyperf.wiki",
  14. "issues": "https://github.com/hyperf/hyperf/issues",
  15. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  16. "source": "https://github.com/hyperf/hyperf"
  17. },
  18. "require": {
  19. "php": ">=7.2",
  20. "hyperf/contract": "~2.2.0",
  21. "psr/event-dispatcher": "^1.0"
  22. },
  23. "suggest": {
  24. "hyperf/di": "Required to use annotatioins."
  25. },
  26. "autoload": {
  27. "psr-4": {
  28. "Hyperf\\Event\\": "src/"
  29. }
  30. },
  31. "autoload-dev": {
  32. "psr-4": {
  33. "HyperfTest\\Event\\": "tests/"
  34. }
  35. },
  36. "config": {
  37. "sort-packages": true
  38. },
  39. "extra": {
  40. "branch-alias": {
  41. "dev-master": "2.2-dev"
  42. },
  43. "hyperf": {
  44. "config": "Hyperf\\Event\\ConfigProvider"
  45. }
  46. }
  47. }