TravisCI版本矩阵在更新到composer 2.0后出现问题



更新到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.ymlhttps://github.com/AOEpeople/crawler/blob/master/.travis.yml#L50

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

Composer的GitHub存储库上的PR 9336中报告并修复了composer require的问题。它将出现在即将发布的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产生不同的结果,甚至是冲突,因为您将更新限制为仅限于新包及其依赖项。

相关内容

  • 没有找到相关文章

最新更新