composer.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. "issues": "https://github.com/hyperf/hyperf/issues",
  13. "source": "https://github.com/hyperf/hyperf",
  14. "docs": "https://hyperf.wiki",
  15. "pull-request": "https://github.com/hyperf/hyperf/pulls"
  16. },
  17. "require": {
  18. "php": ">=8.1",
  19. "hyperf/code-parser": "~3.1.0",
  20. "hyperf/collection": "~3.1.23",
  21. "hyperf/conditionable": "~3.1.0",
  22. "hyperf/context": "~3.1.0",
  23. "hyperf/contract": "~3.1.0",
  24. "hyperf/engine": "^2.0",
  25. "hyperf/macroable": "~3.1.0",
  26. "hyperf/stringable": "~3.1.0",
  27. "hyperf/support": "~3.1.0",
  28. "hyperf/tappable": "~3.1.0",
  29. "nesbot/carbon": "^2.0",
  30. "psr/container": "^1.0 || ^2.0",
  31. "psr/event-dispatcher": "^1.0"
  32. },
  33. "suggest": {
  34. "doctrine/dbal": "Required to rename columns (^3.0).",
  35. "hyperf/paginator": "Required to paginate the result set (~3.1.0).",
  36. "nikic/php-parser": "Required to use ModelCommand. (^4.0)",
  37. "php-di/phpdoc-reader": "Required to use ModelCommand. (^2.2)"
  38. },
  39. "autoload": {
  40. "psr-4": {
  41. "Hyperf\\Database\\": "src/"
  42. }
  43. },
  44. "autoload-dev": {
  45. "psr-4": {
  46. "HyperfTest\\Database\\": "tests/"
  47. }
  48. },
  49. "config": {
  50. "sort-packages": true
  51. },
  52. "extra": {
  53. "branch-alias": {
  54. "dev-master": "3.1-dev"
  55. }
  56. }
  57. }