Merge pull request #3187 from GrahamForks/autoload-dev

Make use of autoload-dev
This commit is contained in:
Taylor Otwell 2014-12-15 10:01:44 -06:00
commit 01adbfbb5f
1 changed files with 6 additions and 2 deletions

View File

@ -12,13 +12,17 @@
}, },
"autoload": { "autoload": {
"classmap": [ "classmap": [
"resources/database", "database"
"tests/TestCase.php"
], ],
"psr-4": { "psr-4": {
"App\\": "app/" "App\\": "app/"
} }
}, },
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
]
},
"scripts": { "scripts": {
"post-install-cmd": [ "post-install-cmd": [
"php artisan clear-compiled", "php artisan clear-compiled",