composer.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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": "^7.1.3",
  19. "ext-json": "*",
  20. "illuminate/container": "5.8.*",
  21. "illuminate/contracts": "5.8.*",
  22. "illuminate/support": "5.8.*"
  23. },
  24. "autoload": {
  25. "psr-4": {
  26. "Illuminate\\Database\\": ""
  27. }
  28. },
  29. "extra": {
  30. "branch-alias": {
  31. "dev-master": "5.8-dev"
  32. }
  33. },
  34. "suggest": {
  35. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).",
  36. "fzaninotto/faker": "Required to use the eloquent factory builder (^1.4).",
  37. "illuminate/console": "Required to use the database commands (5.8.*).",
  38. "illuminate/events": "Required to use the observers with Eloquent (5.8.*).",
  39. "illuminate/filesystem": "Required to use the migrations (5.8.*).",
  40. "illuminate/pagination": "Required to paginate the result set (5.8.*)."
  41. },
  42. "config": {
  43. "sort-packages": true
  44. },
  45. "minimum-stability": "dev"
  46. }