I know it's possible to override a composer dependency using:
"some/module": "1.0.0 as 2.0.0",
But is it possible to entirely remove a dependency that one of my dependencies requires?
The issue is that I am requiring "cwp/cwp-recipe-basic": "1.1.0",
which can be found here. That package is simply another list of dependencies, however I do not want one of those dependencies.
Is there any way of telling composer to ignore that one dependency?
E.g.
"cwp/cwp-recipe-basic": "1.1.0",
"silverstripe/fulltextsearch": " as 1.1.0"