From fb68306bdbde1de85e18fb0c4458b90dd9913835 Mon Sep 17 00:00:00 2001 From: Oliver Klee Date: Mon, 3 Aug 2026 15:49:09 +0200 Subject: [PATCH] [TASK] Allow installations with TYPO3 14LTS Part of #2253 --- Build/rector/config.php | 2 +- composer.json | 12 ++++++------ ext_emconf.php | 8 ++++---- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Build/rector/config.php b/Build/rector/config.php index 46bfdea8..3c174081 100644 --- a/Build/rector/config.php +++ b/Build/rector/config.php @@ -51,7 +51,7 @@ ->withImportNames(true, true, false) ->withConfiguredRule(ExtEmConfRector::class, [ ExtEmConfRector::PHP_VERSION_CONSTRAINT => '8.2.0-8.5.99', - ExtEmConfRector::TYPO3_VERSION_CONSTRAINT => '13.4.31-13.4.99', + ExtEmConfRector::TYPO3_VERSION_CONSTRAINT => '13.4.31-14.3.99', ExtEmConfRector::ADDITIONAL_VALUES_TO_BE_REMOVED => [], ]) ->withSkip([ diff --git a/composer.json b/composer.json index e0edb82e..2c6aa5e0 100644 --- a/composer.json +++ b/composer.json @@ -41,10 +41,10 @@ "require": { "php": "~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0", "psr/http-message": "^1.0.1", - "typo3/cms-core": "^13.4.31", - "typo3/cms-extbase": "^13.4.31", - "typo3/cms-fluid": "^13.4.31", - "typo3/cms-frontend": "^13.4.31" + "typo3/cms-core": "^13.4.31 || ^14.3.3", + "typo3/cms-extbase": "^13.4.31 || ^14.3.3", + "typo3/cms-fluid": "^13.4.31 || ^14.3.3", + "typo3/cms-frontend": "^13.4.31 || ^14.3.3" }, "require-dev": { "ergebnis/composer-normalize": "2.52.0", @@ -61,7 +61,7 @@ "phpunit/phpcov": "10.0.1", "phpunit/phpunit": "11.5.56", "rector/type-perfect": "2.2.0", - "saschaegerer/phpstan-typo3": "2.1.1", + "saschaegerer/phpstan-typo3": "2.2.0 || 3.1.0", "seld/jsonlint": "1.12.1", "spaze/phpstan-disallowed-calls": "4.13.0", "ssch/typo3-rector": "3.14.3", @@ -73,7 +73,7 @@ "symfony/yaml": "^7.4", "tomasvotruba/cognitive-complexity": "1.1.1", "tomasvotruba/type-coverage": "2.2.1", - "typo3/cms-fluid-styled-content": "^13.4", + "typo3/cms-fluid-styled-content": "^13.4 || ^14.3", "typo3/coding-standards": "0.9.0", "typo3/testing-framework": "9.6.1" }, diff --git a/ext_emconf.php b/ext_emconf.php index 18260ba1..153d9483 100644 --- a/ext_emconf.php +++ b/ext_emconf.php @@ -8,10 +8,10 @@ 'constraints' => [ 'depends' => [ 'php' => '8.2.0-8.5.99', - 'typo3' => '13.4.31-13.4.99', - 'extbase' => '13.4.31-13.4.99', - 'fluid' => '13.4.31-13.4.99', - 'frontend' => '13.4.31-13.4.99', + 'typo3' => '13.4.31-14.3.99', + 'extbase' => '13.4.31-14.3.99', + 'fluid' => '13.4.31-14.3.99', + 'frontend' => '13.4.31-14.3.99', ], ], 'state' => 'stable',