composer.json 799 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. "repositories": [
  10. {
  11. "type": "vcs",
  12. "url": "https://github.com/laravel/boris"
  13. }
  14. ],
  15. "autoload": {
  16. "classmap": [
  17. "app/commands",
  18. "app/controllers",
  19. "app/models",
  20. "app/database/migrations",
  21. "app/database/seeds",
  22. "app/tests/TestCase.php"
  23. ]
  24. },
  25. "scripts": {
  26. "post-install-cmd": [
  27. "php artisan optimize"
  28. ],
  29. "pre-update-cmd": [
  30. "php artisan clear-compiled"
  31. ],
  32. "post-update-cmd": [
  33. "php artisan optimize"
  34. ],
  35. "post-create-project-cmd": [
  36. "php artisan key:generate"
  37. ]
  38. },
  39. "config": {
  40. "preferred-install": "dist"
  41. },
  42. "minimum-stability": "dev"
  43. }