This repository was archived by the owner on Jul 1, 2023. It is now read-only.
This repository was archived by the owner on Jul 1, 2023. It is now read-only.
composer: use separate autoload and autoload-dev #140
Closed
Description
Currently the whole project tree is marked for autoload
, from composer.json
"autoload": {
"classmap": [
"./"
]
},
It does not differentiate between autoloading actual source and test related stuff, but should.
(unverified) suggestion:
"autoload": {
"classmap": [
"./src/"
]
},
"autoload-dev": {
"classmap": [
"./tests/"
]
}
Metadata
Metadata
Assignees
Labels
No labels