bug #3 Autoload tests only in the dev environment (stof)

This PR was merged into the master branch.

Discussion
----------

Autoload tests only in the dev environment

Tests don't need to be registered in the production autoloader.

Commits
-------

69c465d Autoload tests only in the dev environment
This commit is contained in:
Fabien Potencier 2017-03-20 06:57:12 -07:00
commit 5e6a09b4d7

View File

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