composer.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "hyperf/pool",
  3. "description": "An independent universal connection pool component.",
  4. "license": "MIT",
  5. "keywords": [
  6. "php",
  7. "swoole",
  8. "hyperf",
  9. "connection-pool"
  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. "psr/container": "^1.0|^2.0",
  21. "hyperf/contract": "~2.2.0",
  22. "hyperf/utils": "~2.2.0"
  23. },
  24. "autoload": {
  25. "psr-4": {
  26. "Hyperf\\Pool\\": "src/"
  27. }
  28. },
  29. "autoload-dev": {
  30. "psr-4": {
  31. "HyperfTest\\Pool\\": "tests/"
  32. }
  33. },
  34. "config": {
  35. "sort-packages": true
  36. },
  37. "extra": {
  38. "branch-alias": {
  39. "dev-master": "2.2-dev"
  40. },
  41. "hyperf": {
  42. "config": "Hyperf\\Pool\\ConfigProvider"
  43. }
  44. }
  45. }