composer.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. "name": "hyperf/http-server",
  3. "description": "A HTTP Server for Hyperf.",
  4. "license": "MIT",
  5. "keywords": [
  6. "php",
  7. "swoole",
  8. "hyperf",
  9. "http",
  10. "http-server"
  11. ],
  12. "homepage": "https://hyperf.io",
  13. "support": {
  14. "docs": "https://hyperf.wiki",
  15. "issues": "https://github.com/hyperf/hyperf/issues",
  16. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  17. "source": "https://github.com/hyperf/hyperf"
  18. },
  19. "require": {
  20. "php": ">=8.1",
  21. "hyperf/codec": "~3.1.0",
  22. "hyperf/collection": "~3.1.0",
  23. "hyperf/context": "~3.1.0",
  24. "hyperf/contract": "~3.1.0",
  25. "hyperf/coroutine": "~3.1.0",
  26. "hyperf/dispatcher": "~3.1.0",
  27. "hyperf/event": "~3.1.0",
  28. "hyperf/exception-handler": "~3.1.0",
  29. "hyperf/http-message": "~3.1.0",
  30. "hyperf/macroable": "~3.1.0",
  31. "hyperf/serializer": "~3.1.0",
  32. "hyperf/server": "~3.1.0",
  33. "hyperf/stdlib": "~3.1.0",
  34. "hyperf/support": "~3.1.0",
  35. "nikic/fast-route": "^1.3",
  36. "psr/container": "^1.0|^2.0",
  37. "swow/psr7-plus": "^1.0"
  38. },
  39. "suggest": {
  40. "hyperf/di": "Required to use annotations."
  41. },
  42. "autoload": {
  43. "psr-4": {
  44. "Hyperf\\HttpServer\\": "src/"
  45. }
  46. },
  47. "autoload-dev": {
  48. "psr-4": {
  49. "HyperfTest\\HttpServer\\": "tests/"
  50. }
  51. },
  52. "config": {
  53. "sort-packages": true
  54. },
  55. "extra": {
  56. "branch-alias": {
  57. "dev-master": "3.1-dev"
  58. },
  59. "hyperf": {
  60. "config": "Hyperf\\HttpServer\\ConfigProvider"
  61. }
  62. }
  63. }