After deploying one of our projects I was wondering about some installed packages on the production system like friendsofphp/php-cs-fixer and typo3/coding-standards.
We also use these packages in our extensions but normally as "require-dev" dependency, as those packages are IMHO only necessary for local development.
After researching, why those packages got installed on production, I found out, that cobweb/external_import and cobweb/svconnector* packages require typo3/coding-standards as standard "require" dependency. That's why the packages above also got installed in production context.
Is this by design or could typo3/coding-standards be moved to the list of "require-dev" dependencies for cobweb/external_import and cobweb/svconnector* packages?