From 8ba6614cdf4c26735ae254e9ddfa5cf2399e03c7 Mon Sep 17 00:00:00 2001 From: David Steeb Date: Tue, 26 May 2026 21:01:45 +0200 Subject: [PATCH 1/2] [TASK] Allow TYPO3 v14 installation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Adds TYPO3 v14 to the supported core constraint in composer.json and the ext_emconf.php depends entry. No code changes — the existing CloudflareClient / ProxyProvider stay API-compatible on v14. Verified against TYPO3 14.3. --- composer.json | 2 +- ext_emconf.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 81a3443..03c77c8 100644 --- a/composer.json +++ b/composer.json @@ -5,7 +5,7 @@ "keywords": ["typo3", "cdn", "cloudflare", "cache", "purge"], "license": "GPL-2.0-or-later", "require": { - "typo3/cms-core": "^11.5 || ^12.4 || ^13.4", + "typo3/cms-core": "^11.5 || ^12.4 || ^13.4 || ^14.0", "php": "^8.0" }, "extra": { diff --git a/ext_emconf.php b/ext_emconf.php index 99193f7..43a73d3 100755 --- a/ext_emconf.php +++ b/ext_emconf.php @@ -18,7 +18,7 @@ 'version' => '2.0.1', 'constraints' => [ 'depends' => [ - 'typo3' => '11.5.0-13.4.99', + 'typo3' => '11.5.0-14.99.99', ], 'conflicts' => [ ], From 273992a3c28f1233eb9979eb60fef9159d66bda4 Mon Sep 17 00:00:00 2001 From: David Steeb Date: Tue, 26 May 2026 21:07:08 +0200 Subject: [PATCH 2/2] [!!!][TASK] Drop TYPO3 v11 / v12 support MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Aligns the supported core range with the sister extension b13/proxycachemanager: ^13.4 || ^14.0 only. PHP minimum bumped to ^8.2 to match TYPO3 v13 LTS. No code changes are required — the extension has no v11/v12-specific branches. This is purely a constraint tightening, qualifying for a major version bump (3.0.0). --- composer.json | 4 ++-- ext_emconf.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index 03c77c8..2c228fa 100644 --- a/composer.json +++ b/composer.json @@ -5,8 +5,8 @@ "keywords": ["typo3", "cdn", "cloudflare", "cache", "purge"], "license": "GPL-2.0-or-later", "require": { - "typo3/cms-core": "^11.5 || ^12.4 || ^13.4 || ^14.0", - "php": "^8.0" + "typo3/cms-core": "^13.4 || ^14.0", + "php": "^8.2" }, "extra": { "typo3/cms": { diff --git a/ext_emconf.php b/ext_emconf.php index 43a73d3..061683d 100755 --- a/ext_emconf.php +++ b/ext_emconf.php @@ -18,7 +18,7 @@ 'version' => '2.0.1', 'constraints' => [ 'depends' => [ - 'typo3' => '11.5.0-14.99.99', + 'typo3' => '13.4.0-14.99.99', ], 'conflicts' => [ ],