使用本地安装(ddev
& TYPO3 9.5 LTS
(。尝试使用:
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
,但无济于事。这是怎么回事?这仍然是我与作曲家的第一步。Typo3。如何将我的Typo3包装从9.5.5
更新为9.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的全部是什么?如何修复作曲家 - 安装?
感谢您的帮助。
我不知道这个主题是否仍然相关。但是,如果使用DDEV,则可以通过容器中的SSH运行composer update typo3/cms-* --with-all-dependencies
。这应该有效。