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
1 changed files with 5 additions and 1 deletions

View File

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