From e9606534b694f1877e19c51a4a7562d6cec270f1 Mon Sep 17 00:00:00 2001 From: Oliver Klee Date: Tue, 19 Oct 2021 02:22:07 +0200 Subject: [PATCH] [FEATURE] Re-allow installations on TYPO3 11LTS (#323) --- CHANGELOG.md | 1 + composer.json | 10 +++++----- ext_emconf.php | 2 +- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 76dfb97..ce860fa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ This project adheres to [Semantic Versioning](https://semver.org/). ## x.y.z ### Added +- Allow installations on TYPO3 11LTS ### Changed diff --git a/composer.json b/composer.json index c050840..d9e4bbb 100644 --- a/composer.json +++ b/composer.json @@ -22,10 +22,10 @@ ], "require": { "php": "~7.2.0 || ~7.3.0 || ~7.4.0 || ~8.0", - "typo3/cms-core": "^9.5 || ^10.4", - "typo3/cms-extbase": "^9.5 || ^10.4", - "typo3/cms-fluid": "^9.5 || ^10.4", - "typo3/cms-frontend": "^9.5 || ^10.4" + "typo3/cms-core": "^9.5 || ^10.4 || ^11.5", + "typo3/cms-extbase": "^9.5 || ^10.4 || ^11.5", + "typo3/cms-fluid": "^9.5 || ^10.4 || ^11.5", + "typo3/cms-frontend": "^9.5 || ^10.4 || ^11.5" }, "replace": { "typo3-ter/tea": "self.version" @@ -50,7 +50,7 @@ "seld/jsonlint": "^1.8.3", "squizlabs/php_codesniffer": "^3.6.0", "symfony/yaml": "^4.4.29 || ^5.3.6 || ^6.0", - "typo3/cms-fluid-styled-content": "^9.5 || ^10.4" + "typo3/cms-fluid-styled-content": "^9.5 || ^10.4 || ^11.5" }, "config": { "preferred-install": { diff --git a/ext_emconf.php b/ext_emconf.php index c4f3ebc..fc901e7 100644 --- a/ext_emconf.php +++ b/ext_emconf.php @@ -7,7 +7,7 @@ $EM_CONF[$_EXTKEY] = [ 'constraints' => [ 'depends' => [ 'php' => '7.2.0-7.4.99', - 'typo3' => '9.5.0-10.4.99', + 'typo3' => '9.5.0-11.5.99', ], ], 'state' => 'stable',