Update composer.json

Only autoload the tests namespace in dev.
This commit is contained in:
Eric Dowell 2017-01-24 15:44:09 -06:00 committed by GitHub
parent f1430cedce
commit bf33e17022

View File

@ -19,7 +19,11 @@
"database"
],
"psr-4": {
"App\\": "app/",
"App\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},