composer.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "hyperf/db-connection",
  3. "description": "A hyperf db connection handler for hyperf/database.",
  4. "license": "MIT",
  5. "keywords": [
  6. "php",
  7. "hyperf",
  8. "database",
  9. "connection"
  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. "hyperf/framework": "~2.2.0",
  21. "hyperf/database": "~2.2.0",
  22. "hyperf/di": "~2.2.0",
  23. "hyperf/model-listener": "~2.2.0",
  24. "hyperf/pool": "~2.2.0",
  25. "hyperf/utils": "~2.2.0"
  26. },
  27. "autoload": {
  28. "psr-4": {
  29. "Hyperf\\DbConnection\\": "src/"
  30. }
  31. },
  32. "autoload-dev": {
  33. "psr-4": {
  34. "HyperfTest\\DbConnection\\": "tests/"
  35. }
  36. },
  37. "config": {
  38. "sort-packages": true
  39. },
  40. "extra": {
  41. "branch-alias": {
  42. "dev-master": "2.2-dev"
  43. },
  44. "hyperf": {
  45. "config": "Hyperf\\DbConnection\\ConfigProvider"
  46. }
  47. }
  48. }