From a605e623f9d514cb3c16dfca1f84f353d555fb3d Mon Sep 17 00:00:00 2001 From: Daniel Huf Date: Thu, 24 Aug 2023 20:55:07 +0200 Subject: [PATCH] feat: Update v12 constraints and drop v10 --- .github/workflows/ci.yaml | 2 -- composer.json | 6 +++--- ext_emconf.php | 10 ---------- 3 files changed, 3 insertions(+), 15 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index a2c4637..de0e33d 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -106,8 +106,6 @@ jobs: strategy: matrix: include: - - php-version: '7.4' - typo3-version: '^10.4' - php-version: '7.4' typo3-version: '^11.5' - php-version: '8.0' diff --git a/composer.json b/composer.json index ec2e248..083e22e 100644 --- a/composer.json +++ b/composer.json @@ -14,14 +14,14 @@ } }, "require": { - "typo3/cms-core": "^10.4 || ^11.5", + "typo3/cms-core": "^11.5 || ^12.4", "php": "~7.4.0 || ~8.0.0 || ~8.1.0" }, "require-dev": { "rector/rector": "^0.12.23", - "typo3/testing-framework": "^6.16", + "typo3/testing-framework": "^8.0", "phpspec/prophecy-phpunit": "^2.0", - "symplify/easy-coding-standard": "^10.2" + "symplify/easy-coding-standard": "^12.0" }, "extra": { "typo3/cms": { diff --git a/ext_emconf.php b/ext_emconf.php index 0a6785a..980fea7 100644 --- a/ext_emconf.php +++ b/ext_emconf.php @@ -13,14 +13,4 @@ 'author' => 'Xavier Perseguers', 'author_email' => 'xavier@causal.ch', 'author_company' => 'Swisscom (Schweiz) AG', - 'constraints' => [ - 'depends' => [ - 'typo3' => '9.5.0-9.5.99', - 'php' => '7.0.0-7.2.99', - ], - 'conflicts' => [ - ], - 'suggests' => [ - ], - ] ];