composer.json 697 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "laravel/laravel",
  3. "description": "The Laravel Framework.",
  4. "keywords": ["framework", "laravel"],
  5. "license": "MIT",
  6. "require": {
  7. "laravel/framework": "4.1.*"
  8. },
  9. "autoload": {
  10. "classmap": [
  11. "app/commands",
  12. "app/controllers",
  13. "app/models",
  14. "app/database/migrations",
  15. "app/database/seeds",
  16. "app/tests/TestCase.php"
  17. ]
  18. },
  19. "scripts": {
  20. "post-install-cmd": [
  21. "php artisan clear-compiled",
  22. "php artisan optimize"
  23. ],
  24. "post-update-cmd": [
  25. "php artisan clear-compiled",
  26. "php artisan optimize"
  27. ],
  28. "post-create-project-cmd": [
  29. "php artisan key:generate"
  30. ]
  31. },
  32. "config": {
  33. "preferred-install": "dist"
  34. },
  35. "minimum-stability": "stable"
  36. }