composer.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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": ">=8.1",
  20. "hyperf/database": "~3.1.0",
  21. "hyperf/di": "~3.1.0",
  22. "hyperf/framework": "~3.1.0",
  23. "hyperf/model-listener": "~3.1.0",
  24. "hyperf/pool": "~3.1.0",
  25. "hyperf/support": "~3.1.0",
  26. "hyperf/utils": "~3.1.0",
  27. "psr/container": "^1.0|^2.0"
  28. },
  29. "autoload": {
  30. "psr-4": {
  31. "Hyperf\\DbConnection\\": "src/"
  32. }
  33. },
  34. "autoload-dev": {
  35. "psr-4": {
  36. "HyperfTest\\DbConnection\\": "tests/"
  37. }
  38. },
  39. "config": {
  40. "sort-packages": true
  41. },
  42. "extra": {
  43. "branch-alias": {
  44. "dev-master": "3.1-dev"
  45. },
  46. "hyperf": {
  47. "config": "Hyperf\\DbConnection\\ConfigProvider"
  48. }
  49. }
  50. }