composer.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "hyperf/server",
  3. "description": "A base server library for Hyperf.",
  4. "license": "MIT",
  5. "keywords": [
  6. "php",
  7. "swoole",
  8. "hyperf",
  9. "server"
  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": ">=8.1",
  20. "hyperf/contract": "~3.1.0",
  21. "hyperf/coordinator": "~3.1.0",
  22. "hyperf/engine": "^2.8",
  23. "hyperf/support": "~3.1.0",
  24. "hyperf/tappable": "~3.1.0",
  25. "psr/container": "^1.0|^2.0",
  26. "psr/event-dispatcher": "^1.0",
  27. "psr/log": "^1.0|^2.0|^3.0",
  28. "symfony/console": "^5.0|^6.0|^7.0"
  29. },
  30. "suggest": {
  31. "hyperf/framework": "Dump the info after server start.",
  32. "hyperf/event": "Dump the info after server start."
  33. },
  34. "autoload": {
  35. "psr-4": {
  36. "Hyperf\\Server\\": "src/"
  37. }
  38. },
  39. "autoload-dev": {
  40. "psr-4": {
  41. "HyperfTest\\Server\\": "tests/"
  42. }
  43. },
  44. "config": {
  45. "sort-packages": true
  46. },
  47. "extra": {
  48. "branch-alias": {
  49. "dev-master": "3.1-dev"
  50. },
  51. "hyperf": {
  52. "config": "Hyperf\\Server\\ConfigProvider"
  53. }
  54. }
  55. }