Closed mfn closed 2 years ago
Currently the whole project tree is marked for autoload, from composer.json
autoload
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/" ] }
A PR is open to address in https://github.com/php-parallel-lint/PHP-Parallel-Lint/pull/88
PR was merged. Thanks @mfn for suggestion and @jrfnl for pushing as PR :+1:
Nice, closing then!
Currently the whole project tree is marked for
autoload
, fromcomposer.json
It does not differentiate between autoloading actual source and test related stuff, but should.
(unverified) suggestion: