composer.json 493 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "require": {
  3. "laravel/framework": "4.0.*"
  4. },
  5. "autoload": {
  6. "classmap": [
  7. "app/commands",
  8. "app/controllers",
  9. "app/models",
  10. "app/database/migrations",
  11. "app/database/seeds",
  12. "app/tests/TestCase.php"
  13. ]
  14. },
  15. "scripts": {
  16. "pre-update-cmd": [
  17. "php artisan clear-compiled"
  18. ],
  19. "post-install-cmd": [
  20. "php artisan optimize"
  21. ],
  22. "post-update-cmd": [
  23. "php artisan optimize"
  24. ]
  25. },
  26. "config": {
  27. "preferred-install": "dist"
  28. },
  29. "minimum-stability": "dev"
  30. }