composer.json 457 B

123456789101112131415161718192021222324
  1. {
  2. "name": "laravel/laravel",
  3. "description": "The Laravel Framework.",
  4. "keywords": ["framework", "laravel"],
  5. "license": "MIT",
  6. "type": "project",
  7. "require": {
  8. "laravel/framework": "4.2"
  9. },
  10. "autoload": {
  11. "classmap": [
  12. "app/commands",
  13. "app/controllers",
  14. "app/models",
  15. "app/database/migrations",
  16. "app/database/seeds",
  17. "app/tests/TestCase.php"
  18. ]
  19. },
  20. "config": {
  21. "preferred-install": "dist"
  22. },
  23. "minimum-stability": "stable"
  24. }