composer.json 611 B

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