From 475fec5895c91a49f86dd6be27a7271dcb8686fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20M=C3=A4chler?= Date: Thu, 24 Oct 2024 08:06:06 +0200 Subject: [PATCH] Drops support for TYPO3 11 LTS --- .github/workflows/build.yml | 4 ---- composer.json | 8 ++++---- ext_emconf.php | 2 +- 3 files changed, 5 insertions(+), 9 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 85def3a..a09a49b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,12 +12,8 @@ jobs: fail-fast: false matrix: env: - - { TYPO3_VERSION: 11, PHP_VERSION: 7.4 } - - { TYPO3_VERSION: 11, PHP_VERSION: 8.0 } - { TYPO3_VERSION: 12, PHP_VERSION: 8.1 } - { TYPO3_VERSION: 12, PHP_VERSION: 8.2 } - - { TYPO3_VERSION: 12, PHP_VERSION: 8.3 } - - { TYPO3_VERSION: 13, PHP_VERSION: 8.2 } - { TYPO3_VERSION: 13, PHP_VERSION: 8.3 } - { TYPO3_VERSION: 13, PHP_VERSION: 8.4 } diff --git a/composer.json b/composer.json index e782159..085dccc 100644 --- a/composer.json +++ b/composer.json @@ -16,14 +16,14 @@ } ], "require": { - "typo3/cms-core": "^11.5 || ^12.4 || ^13.4", - "php": ">=7.4.0", + "typo3/cms-core": "^12.4 || ^13.4", + "php": ">=8.1.0", "tecnickcom/tcpdf": "^6.2", "setasign/fpdi": "^2.0" }, "require-dev": { - "phpunit/phpunit": "^9", - "typo3/testing-framework": "^7.0@dev", + "phpunit/phpunit": "^10", + "typo3/testing-framework": "^8.0@dev", "smalot/pdfparser": "^2", "squizlabs/php_codesniffer": "^3.7", "sbuerk/typo3-cmscomposerinstallers-testingframework-bridge": "^0.1.2" diff --git a/ext_emconf.php b/ext_emconf.php index ab0ad48..422744d 100755 --- a/ext_emconf.php +++ b/ext_emconf.php @@ -15,7 +15,7 @@ 'version' => '3.0.0', 'constraints' => [ 'depends' => [ - 'typo3' => '11.5.0-13.4.99', + 'typo3' => '12.4.0-13.4.99', 'php' => '7.4.0-0.0.0', ], 'conflicts' => [],