composer.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "hyperf/framework",
  3. "description": "A coroutine framework that focuses on hyperspeed and flexible, specifically use for build microservices and middlewares.",
  4. "license": "MIT",
  5. "keywords": [
  6. "php",
  7. "swoole",
  8. "framework",
  9. "hyperf",
  10. "microservice",
  11. "middleware"
  12. ],
  13. "homepage": "https://hyperf.io",
  14. "support": {
  15. "docs": "https://hyperf.wiki",
  16. "issues": "https://github.com/hyperf/hyperf/issues",
  17. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  18. "source": "https://github.com/hyperf/hyperf"
  19. },
  20. "require": {
  21. "php": ">=7.2",
  22. "fig/http-message-util": "^1.1.2",
  23. "hyperf/contract": "~2.2.0",
  24. "hyperf/utils": "~2.2.0",
  25. "psr/container": "^1.0|^2.0",
  26. "psr/event-dispatcher": "^1.0",
  27. "psr/log": "^1.0|^2.0|^3.0"
  28. },
  29. "suggest": {
  30. "ext-swoole": "Required to use swoole engine.",
  31. "hyperf/di": "Required to use Command annotation.",
  32. "hyperf/dispatcher": "Required to use BootApplication event.",
  33. "hyperf/command": "Required to use Command annotation.",
  34. "symfony/event-dispatcher": "Required to use symfony event dispatcher (^5.0)."
  35. },
  36. "autoload": {
  37. "psr-4": {
  38. "Hyperf\\Framework\\": "src/"
  39. }
  40. },
  41. "autoload-dev": {
  42. "psr-4": {
  43. "HyperfTest\\Framework\\": "tests/"
  44. }
  45. },
  46. "config": {
  47. "sort-packages": true
  48. },
  49. "extra": {
  50. "branch-alias": {
  51. "dev-master": "2.2-dev"
  52. },
  53. "hyperf": {
  54. "config": "Hyperf\\Framework\\ConfigProvider"
  55. }
  56. }
  57. }