composer.json 712 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "ascarion/dumbo",
  3. "description": "Dumbo Film Platform",
  4. "keywords": ["dumbo", "film"],
  5. "require": {
  6. "laravel/framework": "4.0.*",
  7. "guzzlehttp/guzzle": "^6.3@dev"
  8. },
  9. "autoload": {
  10. "classmap": [
  11. "app/commands",
  12. "app/controllers",
  13. "app/libraries",
  14. "app/models",
  15. "app/database/migrations",
  16. "app/database/seeds",
  17. "app/tests/TestCase.php"
  18. ]
  19. },
  20. "scripts": {
  21. "post-install-cmd": [
  22. "php artisan optimize"
  23. ],
  24. "pre-update-cmd": [
  25. "php artisan clear-compiled"
  26. ],
  27. "post-update-cmd": [
  28. "php artisan optimize"
  29. ],
  30. "post-create-project-cmd": [
  31. "php artisan key:generate"
  32. ]
  33. },
  34. "config": {
  35. "preferred-install": "dist"
  36. },
  37. "minimum-stability": "dev"
  38. }