composer.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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/macroable": "~3.1.0",
  23. "hyperf/support": "~3.1.0",
  24. "hyperf/tappable": "~3.1.0",
  25. "hyperf/utils": "~3.1.0",
  26. "nesbot/carbon": "^2.0",
  27. "psr/container": "^1.0 || ^2.0",
  28. "psr/event-dispatcher": "^1.0"
  29. },
  30. "suggest": {
  31. "doctrine/dbal": "Required to rename columns (^3.0).",
  32. "hyperf/paginator": "Required to paginate the result set (~3.1.0).",
  33. "nikic/php-parser": "Required to use ModelCommand. (^4.0)",
  34. "php-di/phpdoc-reader": "Required to use ModelCommand. (^2.2)"
  35. },
  36. "autoload": {
  37. "psr-4": {
  38. "Hyperf\\Database\\": "src/"
  39. }
  40. },
  41. "autoload-dev": {
  42. "psr-4": {
  43. "HyperfTest\\Database\\": "tests/"
  44. }
  45. },
  46. "config": {
  47. "sort-packages": true
  48. },
  49. "extra": {
  50. "branch-alias": {
  51. "dev-master": "3.1-dev"
  52. }
  53. }
  54. }