composer.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "illuminate/database",
  3. "description": "The Illuminate Database package.",
  4. "license": "MIT",
  5. "homepage": "https://laravel.com",
  6. "support": {
  7. "issues": "https://github.com/laravel/framework/issues",
  8. "source": "https://github.com/laravel/framework"
  9. },
  10. "keywords": ["laravel", "database", "sql", "orm"],
  11. "authors": [
  12. {
  13. "name": "Taylor Otwell",
  14. "email": "taylor@laravel.com"
  15. }
  16. ],
  17. "require": {
  18. "php": "^8.2",
  19. "ext-pdo": "*",
  20. "brick/math": "^0.9.3|^0.10.2|^0.11|^0.12",
  21. "illuminate/collections": "^11.0",
  22. "illuminate/container": "^11.0",
  23. "illuminate/contracts": "^11.0",
  24. "illuminate/macroable": "^11.0",
  25. "illuminate/support": "^11.0"
  26. },
  27. "autoload": {
  28. "psr-4": {
  29. "Illuminate\\Database\\": ""
  30. }
  31. },
  32. "extra": {
  33. "branch-alias": {
  34. "dev-master": "11.x-dev"
  35. }
  36. },
  37. "suggest": {
  38. "ext-filter": "Required to use the Postgres database driver.",
  39. "fakerphp/faker": "Required to use the eloquent factory builder (^1.21).",
  40. "illuminate/console": "Required to use the database commands (^11.0).",
  41. "illuminate/events": "Required to use the observers with Eloquent (^11.0).",
  42. "illuminate/filesystem": "Required to use the migrations (^11.0).",
  43. "illuminate/pagination": "Required to paginate the result set (^11.0).",
  44. "symfony/finder": "Required to use Eloquent model factories (^7.0)."
  45. },
  46. "config": {
  47. "sort-packages": true
  48. },
  49. "minimum-stability": "dev"
  50. }