dtf579777 2019-07-23 12:47
浏览 633
已采纳

如何在Composer中强制依赖库的版本

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 than 3.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.

    See also: https://getcomposer.org/doc/04-schema.md#conflict

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥40 复杂的限制性的商函数处理
  • ¥15 程序不包含适用于入口点的静态Main方法
  • ¥15 素材场景中光线烘焙后灯光失效
  • ¥15 请教一下各位,为什么我这个没有实现模拟点击
  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码