作曲家模式下的 TYPO3 Realurl


我在作曲家模式下使用 TYPO3,现在,我

坚持使用不受支持的 TYPO3(版本 8.4),因为我唯一的依赖项 EXT:RealURL 需要 TYPO3 <8.5,从而阻止我升级。

{
    "repositories": [
            { "type": "composer", "url": "https://composer.typo3.org/" }
    ],
    "name": "typo3/cms-base-distribution",
    "description" : "TYPO3 CMS Base Distribution",
    "license": "GPL-2.0+",
    "require": {
            "typo3/cms": "^8.4",
            "typo3-ter/realurl": "^2.1"
    },
    "extra": {
            "typo3/cms": {
                    "cms-package-dir": "{$vendor-dir}/typo3/cms",
                    "web-dir": "web"
            }
    }

}

RealURL composer.json

 "require": {
        "typo3/cms-core": ">=6.2.0,<8.5.0",
        "php": ">=5.4.0"
    },

我不确定我现在的选择是什么:

处理不受支持的版本 auf TYPO3 或放弃 RealURL,破坏现有 URL,或 ?

如果您能指出,如果我在这里缺少一个可行的选择,那就太好了:)

在 realurl 更新之前,您可以使用:

"require": {
    "typo3/cms": "8.5.1 as 8.4.99",
    "typo3-ter/realurl": "^2.1"
}

相关内容

  • 没有找到相关文章

最新更新