composer.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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",
  21. "hyperf/contract": "~2.0.0",
  22. "hyperf/utils": "~2.0.0"
  23. },
  24. "require-dev": {
  25. "malukenho/docheader": "^0.1.6",
  26. "mockery/mockery": "^1.0",
  27. "phpunit/phpunit": "^7.0.0",
  28. "friendsofphp/php-cs-fixer": "^2.9"
  29. },
  30. "suggest": {
  31. },
  32. "autoload": {
  33. "psr-4": {
  34. "Hyperf\\Pool\\": "src/"
  35. }
  36. },
  37. "autoload-dev": {
  38. "psr-4": {
  39. "HyperfTest\\Pool\\": "tests/"
  40. }
  41. },
  42. "config": {
  43. "sort-packages": true
  44. },
  45. "extra": {
  46. "branch-alias": {
  47. "dev-master": "2.0-dev"
  48. },
  49. "hyperf": {
  50. "config": "Hyperf\\Pool\\ConfigProvider"
  51. }
  52. },
  53. "bin": [
  54. ],
  55. "scripts": {
  56. "cs-fix": "php-cs-fixer fix $1",
  57. "test": "phpunit --colors=always"
  58. }
  59. }