I have a composer.json which contains library nette/nette which has dependence to other library nette/deprecated and this nested library has a bug in newer version. So I need to force Composer to load previous version of nested library nette/deprecated. The problem is that the main library nette/nette need s to be of version "nette/nette": "~2.4.0" but all the 2.4 and also 2.5 versions depends on the buggy nette/deprecated library. How to force Composer to load exactly required version of nested nette/deprecated library? It seems it is not possible or I am not enough educated in Composer features. Thanks.
1条回答 默认 最新
- dongxi1320 2019-07-24 08:36关注
If you know that a dependency has a bug or interferes with something in your code you can mark it as conflicting in your composer.json.
{ "...", "require": { "..." }, "conflict": { "nette/deprecated": ">2.4.0,<3.0.0" } }
This will exclude everything after
2.4.0
and smaller than3.0.0
, but you can change the value to whatever you need it to be. This way you can communicate clearly, that there are certain versions that are off limits without explicitly declaring this as a root dependency.本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏 举报