composer.json 1.4KB

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