composer.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "hyperf/database",
  3. "description": "A flexible database library.",
  4. "license": "MIT",
  5. "keywords": [
  6. "php",
  7. "hyperf",
  8. "database"
  9. ],
  10. "homepage": "https://hyperf.io",
  11. "support": {
  12. "docs": "https://hyperf.wiki",
  13. "issues": "https://github.com/hyperf/hyperf/issues",
  14. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  15. "source": "https://github.com/hyperf/hyperf"
  16. },
  17. "require": {
  18. "php": ">=8.1",
  19. "hyperf/collection": "~3.1.0",
  20. "hyperf/code-parser": "~3.1.0",
  21. "hyperf/macroable": "~3.1.0",
  22. "hyperf/support": "~3.1.0",
  23. "hyperf/tappable": "~3.1.0",
  24. "hyperf/utils": "~3.1.0",
  25. "nesbot/carbon": "^2.0",
  26. "psr/container": "^1.0|^2.0",
  27. "psr/event-dispatcher": "^1.0"
  28. },
  29. "suggest": {
  30. "doctrine/dbal": "Required to rename columns (^3.0).",
  31. "nikic/php-parser": "Required to use ModelCommand. (^4.0)",
  32. "php-di/phpdoc-reader": "Required to use ModelCommand. (^2.2)"
  33. },
  34. "autoload": {
  35. "psr-4": {
  36. "Hyperf\\Database\\": "src/"
  37. }
  38. },
  39. "autoload-dev": {
  40. "psr-4": {
  41. "HyperfTest\\Database\\": "tests/"
  42. }
  43. },
  44. "config": {
  45. "sort-packages": true
  46. },
  47. "extra": {
  48. "branch-alias": {
  49. "dev-master": "3.1-dev"
  50. }
  51. }
  52. }