Autoload tests only in the dev environment

Tests don't need to be registered in the production autoloader.
This commit is contained in:
Christophe Coevoet 2017-03-20 14:03:02 +01:00 committed by GitHub
parent fa4fbc0730
commit 69c465d96f

@ -25,7 +25,11 @@
},
"autoload": {
"psr-4": {
"App\\": "src/",
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},