Advertisement
scm22ri

composer.json

Nov 23rd, 2014
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.80 KB | None | 0 0
  1. {
  2.     "name": "laravel/laravel",
  3.     "description": "The Laravel Framework.",
  4.     "keywords": ["framework", "laravel"],
  5.     "license": "MIT",
  6.     "require": {
  7.         "laravel/framework": "4.2.*"
  8.     },
  9.     "autoload": {
  10.         "classmap": [
  11.             "app/commands",
  12.             "app/controllers",
  13.             "app/models",
  14.             "app/database/migrations",
  15.             "app/database/seeds",
  16.             "app/tests/TestCase.php",
  17.             "app/customValidation.php" <---------------------- I added my customValidation.php
  18.         ]
  19.     },
  20.     "scripts": {
  21.         "post-install-cmd": [
  22.             "php artisan clear-compiled",
  23.             "php artisan optimize"
  24.         ],
  25.         "post-update-cmd": [
  26.             "php artisan clear-compiled",
  27.             "php artisan optimize"
  28.         ],
  29.         "post-create-project-cmd": [
  30.             "php artisan key:generate"
  31.         ]
  32.     },
  33.     "config": {
  34.         "preferred-install": "dist"
  35.     },
  36.     "minimum-stability": "stable"
  37. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement