composer.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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": ">=8.1",
  22. "fig/http-message-util": "^1.1.2",
  23. "hyperf/contract": "~3.1.0",
  24. "hyperf/coordinator": "~3.1.0",
  25. "hyperf/coroutine": "~3.1.0",
  26. "psr/container": "^1.0|^2.0",
  27. "psr/event-dispatcher": "^1.0",
  28. "psr/log": "^1.0|^2.0|^3.0"
  29. },
  30. "suggest": {
  31. "ext-swoole": "Required to use swoole engine.",
  32. "hyperf/di": "Required to use Command annotation.",
  33. "hyperf/dispatcher": "Required to use BootApplication event.",
  34. "hyperf/command": "Required to use Command annotation.",
  35. "symfony/event-dispatcher": "Required to use symfony event dispatcher (^5.0|^6.0)."
  36. },
  37. "autoload": {
  38. "psr-4": {
  39. "Hyperf\\Framework\\": "src/"
  40. }
  41. },
  42. "autoload-dev": {
  43. "psr-4": {
  44. "HyperfTest\\Framework\\": "tests/"
  45. }
  46. },
  47. "config": {
  48. "sort-packages": true
  49. },
  50. "extra": {
  51. "branch-alias": {
  52. "dev-master": "3.1-dev"
  53. },
  54. "hyperf": {
  55. "config": "Hyperf\\Framework\\ConfigProvider"
  56. }
  57. }
  58. }