composer.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "autoload": {
  3. "classmap": [
  4. "database/seeds",
  5. "database/factories"
  6. ],
  7. "psr-4": {
  8. "App\\": "app/"
  9. }
  10. },
  11. "autoload-dev": {
  12. "psr-4": {
  13. "Tests\\": "tests/"
  14. }
  15. },
  16. "config": {
  17. "preferred-install": "dist",
  18. "sort-packages": true,
  19. "optimize-autoloader": true
  20. },
  21. "description": "The Laravel Framework.",
  22. "keywords": [
  23. "framework",
  24. "laravel"
  25. ],
  26. "license": "MIT",
  27. "minimum-stability": "dev",
  28. "name": "laravel/laravel",
  29. "prefer-stable": true,
  30. "repositories": [
  31. {
  32. "type": "vcs",
  33. "url": "https://github.com/FGM/container-debug.git"
  34. }
  35. ],
  36. "require": {
  37. "php": ">=7.0",
  38. "laravel/framework": "5.4.*",
  39. "laravel/tinker": "~1.0"
  40. },
  41. "require-dev": {
  42. "fgm/container-debug": "5.0.x-dev",
  43. "fzaninotto/faker": "~1.4",
  44. "mockery/mockery": "0.9.*",
  45. "phpunit/phpunit": "~5.7"
  46. },
  47. "scripts": {
  48. "post-root-package-install": [
  49. "php -r \"file_exists('.env') || copy('.env.example', '.env');\""
  50. ],
  51. "post-create-project-cmd": [
  52. "php artisan key:generate"
  53. ],
  54. "post-install-cmd": [
  55. "Illuminate\\Foundation\\ComposerScripts::postInstall",
  56. "php artisan optimize"
  57. ],
  58. "post-update-cmd": [
  59. "Illuminate\\Foundation\\ComposerScripts::postUpdate",
  60. "php artisan optimize"
  61. ]
  62. },
  63. "type": "project"
  64. }