问题
I'm currently working on a package (cms), which has a dev-dependency to a certain package (code-generator) to create code. This package is not needed in production.
However, when creating a website that uses the cms package, dev-dependencies (including the code-generator) are not installed (which is correct composer behavior btw).
But while developing the website, the code-generator is required.
Is there any way to force a certain dev-dependency to also install when the package is installed?
回答1:
This is not possible. Dependency can either be required for the package to work properly (then it should be in require
section and it is always installed), or required only for development of this package (then it should be in require-dev
section and is installed only when package repository is root). There is nothing in between. If this code-generator dependency is required by your package to work it clearly fails into first category (require
section).
Usually in this case the best solution is to split this package into 2 packages: regular package and dev
package with all tools used only during development process. So it should be installed by 2 commands:
composer require myvendor/mypackage
composer require myvendor/mypackage-dev --dev
This will still require everyone to install two packages instead of one, but it should not be a big problem if it is properly documented. Result should is more clear (it should be quite obvious what is the purpose of myvendor/mypackage-dev
package) and gives more control to package owner (he can easily add new dependencies for dev
package) and end user (he can always skip installing myvendor/mypackage-dev
if he don't want to use this code generator).
来源:https://stackoverflow.com/questions/50291517/how-to-force-dev-dependencies-from-a-dependency-to-also-install-with-composer