Попробуй обновить TYPO3 Core через Composer - PullRequest
0 голосов
/ 26 июня 2019

Работа с локальной установкой (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, но это не поможет.В чем дело?Это мои первые шаги с композитором и 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?Как я могу исправить мою установку композитора?

Спасибо за вашу помощь.

1 Ответ

0 голосов
/ 02 июля 2019

Спасибо за все ваши комментарии. Ни один из ваших советов не работает. Я переустановил TYPO3 CMS 9.5.8 через композитор.

...