composer.json 688 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "laravel/laravel",
  3. "description": "The Laravel Framework.",
  4. "keywords": ["framework", "laravel"],
  5. "require": {
  6. "laravel/framework": "4.0.*"
  7. },
  8. "autoload": {
  9. "classmap": [
  10. "app/commands",
  11. "app/controllers",
  12. "app/libraries",
  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 optimize"
  22. ],
  23. "pre-update-cmd": [
  24. "php artisan clear-compiled"
  25. ],
  26. "post-update-cmd": [
  27. "php artisan optimize"
  28. ],
  29. "post-create-project-cmd": [
  30. "php artisan key:generate"
  31. ]
  32. },
  33. "config": {
  34. "preferred-install": "dist"
  35. },
  36. "minimum-stability": "dev"
  37. }