简体   繁体   English

尝试通过 Composer 更新 TYPO3 Core

[英]Try to update TYPO3 Core via Composer

Working with a local installation ( ddev & TYPO3 9.5 LTS ).使用本地安装 ( ddev & TYPO3 9.5 LTS )。 Try to update the TYPO3-Core with:尝试使用以下命令更新 TYPO3-Core:

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

But Nothing to install or update .Nothing to install or update

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

Try to install composer require algo26-matthias/idna-convert but it won't help.尝试安装composer require algo26-matthias/idna-convert但它无济于事。 What's going on?这是怎么回事? It's still my first steps with composer & TYPO3.这仍然是我使用 Composer 和 TYPO3 的第一步。 How can I update my TYPO3-Package from 9.5.5 to 9.5.8 ?如何将我的 TYPO3-Package 从9.5.5更新到9.5.8

I also try to remove mso/idna-convert with我也尝试删除mso/idna-convert

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

Here's my composer.json :这是我的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"
    }
  }
}

What is it all about this mso/idnaconvert - stuff?这个 mso/idnaconvert 是什么东西? How can I fix my composer -installation?如何修复我的作曲家安装?

Thanks for your help.谢谢你的帮助。

Working with a local installation ( ddev & TYPO3 9.5 LTS ).使用本地安装( ddevTYPO3 9.5 LTS )。 Try to update the TYPO3-Core with:尝试使用以下方式更新TYPO3-Core:

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

But Nothing to install or update .但是Nothing to install or update

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

Try to install composer require algo26-matthias/idna-convert but it won't help.尝试安装composer require algo26-matthias/idna-convert但无济于事。 What's going on?这是怎么回事? It's still my first steps with composer & TYPO3.这仍然是我与作曲家和TYPO3合作的第一步。 How can I update my TYPO3-Package from 9.5.5 to 9.5.8 ?如何将TYPO3-Package从9.5.5更新到9.5.8

I also try to remove mso/idna-convert with我也尝试用以下命令删除mso/idna-convert

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

Here's my composer.json :这是我的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"
    }
  }
}

What is it all about this mso/idnaconvert - stuff?这个mso / idnaconvert-东西有什么用? How can I fix my composer -installation?如何修复作曲家的安装?

Thanks for your help.谢谢你的帮助。

I don't know if this subject is still relevant.我不知道这个主题是否仍然相关。 But if you use ddev, you can run composer update typo3/cms-* --with-all-dependencies via SSH in the container.但是如果你使用 ddev,你可以在容器中通过 SSH 运行composer update typo3/cms-* --with-all-dependencies This should work.这应该有效。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM