1

使用本地安装 ( ddev& TYPO3 9.5 LTS)。尝试使用以下命令更新 TYPO3-Core:

composer update typo3/cms-* --with-all-dependencies

但是Nothing to install or update

Package mso/idna-convert is abandoned, you should avoid using it. Use algo26-matthias/idna-convert instead.

尝试安装composer require algo26-matthias/idna-convert,但无济于事。这是怎么回事?这仍然是我使用 composer & TYPO3 的第一步。如何将我的 TYPO3-Package 从 更新9.5.59.5.8

我也尝试mso/idna-convert删除

composer remove mso/idna-convert
mso/idna-convert is not required in your composer.json and has not been removed

这是我的composer.json

{
  "repositories": [
    {
      "type": "path",
      "url": "packages/*"
    },
    {
      "type": "composer",
      "url": "https://composer.typo3.org/"
    }
  ],
  "name": "typo3/cms-base-distribution",
  "description" : "TYPO3 CMS Base Distribution",
  "license": "GPL-2.0-or-later",
  "config": {
    "platform": {
      "php": "7.2"
    }
  },
  "require": {
    "typo3/minimal": "^9.5",
    "typo3/cms-about": "^9.5",
    "typo3/cms-adminpanel": "^9.5",
    "typo3/cms-belog": "^9.5",
    "typo3/cms-beuser": "^9.5",
    "typo3/cms-felogin": "^9.5",
    "typo3/cms-fluid-styled-content": "^9.5",
    "typo3/cms-form": "^9.5",
    "typo3/cms-impexp": "^9.5",
    "typo3/cms-info": "^9.5",
    "typo3/cms-redirects": "^9.5",
    "typo3/cms-reports": "^9.5",
    "typo3/cms-rte-ckeditor": "^9.5",
    "typo3/cms-setup": "^9.5",
    "typo3/cms-seo": "^9.5",
    "typo3/cms-sys-note": "^9.5",
    "typo3/cms-t3editor": "^9.5",
    "typo3/cms-tstemplate": "^9.5",
    "typo3/cms-viewpage": "^9.5",
    "typo3/cms-filemetadata": "^9.5",
    "gridelementsteam/gridelements": "^9.0",
    "mask/mask": "^4.1.0",
    "georgringer/news": "^7.0",
    "ichhabrecht/content-defender": "^3.0",
    "fluidtypo3/vhs": "^5.1",
    "schmitzal/tinyimg": "^1.3",
    "friendsoftypo3/tt-address": "^4.2",
    "in2code/femanager": "^5.0",
    "typo3/cms-recycler": "^9.5",
    "algo26-matthias/idna-convert": "^3.0"
  },
  "extra": {
    "typo3/cms": {
      "cms-package-dir": "{$vendor-dir}/typo3/cms",
      "web-dir": "public"
    }
  }
}

这个 mso/idnaconvert 的全部内容是什么?如何修复我的作曲家安装?

谢谢你的帮助。

4

1 回答 1

0

我不知道这个主题是否仍然相关。但是如果你使用 ddev,你可以composer update typo3/cms-* --with-all-dependencies在容器中通过 SSH 运行。这应该有效。

于 2020-08-13T13:40:26.613 回答