【问题标题】:Problem with TravisCI version matrix after updating to composer 2.0更新到 composer 2.0 后 TravisCI 版本矩阵出现问题
【发布时间】:2020-10-25 16:04:31
【问题描述】:

更新到 Composer 2.0 后,我在执行 Travis 时遇到了问题。

我有一个 TYPO3 扩展,我想用多个 TYPO3 版本进行测试。直到昨天我都可以用composer require nimut/typo3-complete:$TYPO3_VERSION (来自版本Matrix)来做到这一点。

更新后我收到以下错误/信息。

Cannot update only a partial set of packages without a lock file present.
Installation failed, reverting ./composer.json to its original content.

由于我的存储库中没有 composer.lock,我首先使用 composer install 测试了我的管道,然后进行了更新。这一切都很好,直到我进入下一个版本,因为依赖项不同,composer install 中的 composer.lock 无法更新其他依赖项。

我已经用composer require --dev nimut/typo3-complete:^10.4 --with-all-dependencies作曲家的回复试过了:

Problem 1
    - typo3/testing-framework is locked to version 4.15.2 and an update of this package was not requested.
    - typo3/testing-framework 4.15.2 requires typo3/cms-backend ^9.3 -> found typo3/cms-backend[v9.3.0, ..., 9.5.x-dev] but it conflicts with another require.
  Problem 2
    - symfony/http-client v5.1.7 requires symfony/http-client-contracts ^2.2 -> found symfony/http-client-contracts[dev-main, dev-master, v2.2.0, v2.3.1, 2.3.x-dev (alias of dev-master)] but it conflicts with another require.
    - nunomaduro/phpinsights v1.14.0 requires sensiolabs/security-checker ^6.0 -> satisfiable by sensiolabs/security-checker[v6.0.3].
    - sensiolabs/security-checker v6.0.3 requires symfony/http-client ^4.3|^5.0 -> satisfiable by symfony/http-client[v5.1.7].
    - nunomaduro/phpinsights is locked to version v1.14.0 and an update of this package was not requested.

Use the option --with-all-dependencies (-W) to allow upgrades, downgrades and removals for packages currently locked to specific versions.

-W 选项是我正在尝试的选项。 -w-W 我都试过了,到目前为止都没有运气。

我还不确定如何解决这个问题,您的意见对您很有帮助。

链接到.travis.yml https://github.com/AOEpeople/crawler/blob/master/.travis.yml#L50

链接到 Travis Build 进行测试。 https://travis-ci.org/github/AOEpeople/crawler/jobs/738603105#L1138

【问题讨论】:

    标签: php composer-php typo3 travis-ci typo3-extensions


    【解决方案1】:

    composer require 的问题已在 Composer 的 GitHub 存储库的PR 9336 中报告并修复。它将在即将发布的 Composer 2.0.2 中。所以你可以升级到 2.0.2,它应该可以解决你的问题。

    解释您的解决方法失败的原因:

    composer require nimut/typo3-complete:$TYPO3_VERSION 编辑 composer.json 文件以添加 "nimut/typo3-complete": "^$TYPO3_VERSION"。然后它运行composer update nimut/typo3-complete,或者(在 Composer 1.x 或 2.0.2+ 上)一个普通的composer update,如果还没有锁定文件。

    如果您首先在没有锁定文件的情况下运行composer install,则会执行composer update,因为没有锁定文件。随后的composer require 然后仍然编辑 json 文件,现在运行 composer update nimut/typo3-complete 因为有一个锁定文件。即使启用了所有依赖项选项,这也可能与运行普通的 composer update 产生不同的结果甚至冲突,因为您将更新限制为仅新包及其依赖项。

    【讨论】:

    • 这太不可思议了,我对某些项目的复杂性以及您能够以何种速度查明问题并解决问题感到非常惊讶!干得好!
    猜你喜欢
    • 2021-06-04
    • 2016-08-01
    • 2022-03-22
    • 1970-01-01
    • 2014-04-30
    • 2018-04-09
    • 2023-02-02
    • 2020-04-05
    • 2021-03-19
    相关资源
    最近更新 更多