From fb559ffc55fffcdfa3a87681aa280143b3aaa492 Mon Sep 17 00:00:00 2001 From: Daniel Gohlke Date: Wed, 26 Nov 2025 20:54:17 +0100 Subject: [PATCH] [TASK] Add PHP 8.5 support Relates: #719 --- .github/workflows/ci.yaml | 12 +++++++++++- Documentation/guides.xml | 4 ++-- README.md | 4 ++-- composer.json | 2 +- ext_emconf.php | 4 ++-- 5 files changed, 18 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 5c2a3fd9..109f2de1 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -17,6 +17,8 @@ jobs: php-version: - 8.2 - 8.3 + - 8.4 + - 8.5 steps: - name: Checkout uses: actions/checkout@v4 @@ -70,7 +72,7 @@ jobs: - name: Install PHP uses: shivammathur/setup-php@v2 with: - php-version: "8.2" + php-version: "8.3" tools: composer:v2 - name: Install dependencies @@ -92,6 +94,8 @@ jobs: typo3-version: '^13.4' - php-version: '8.4' typo3-version: '^13.4' + - php-version: '8.5' + typo3-version: '^13.4' steps: - uses: actions/checkout@v4 @@ -131,6 +135,9 @@ jobs: - name: Run Unit Tests PHP8.4 run: nix-shell --arg phpVersion \"php84\" --pure --run project-test-unit + - name: Run Unit Tests PHP8.5 + run: nix-shell --arg phpVersion \"php85\" --pure --run project-test-unit + - name: Run Functional Tests PHP8.2 run: nix-shell --arg phpVersion \"php82\" --pure --run project-test-functional @@ -140,3 +147,6 @@ jobs: - name: Run Functional Tests PHP8.4 run: nix-shell --arg phpVersion \"php84\" --pure --run project-test-functional + - name: Run Functional Tests PHP8.5 + run: nix-shell --arg phpVersion \"php85\" --pure --run project-test-functional + diff --git a/Documentation/guides.xml b/Documentation/guides.xml index 6eaa3665..11cd7650 100644 --- a/Documentation/guides.xml +++ b/Documentation/guides.xml @@ -11,8 +11,8 @@ interlink-shortcode="extcode/cart" /> diff --git a/README.md b/README.md index e381537a..aee99e82 100644 --- a/README.md +++ b/README.md @@ -50,8 +50,8 @@ Sometimes minor versions also result in minor adjustments to own templates or co | Cart | TYPO3 | PHP | Support/Development | |--------|------------|-----------|--------------------------------------| -| 11.x.x | 13.4 | 8.2 - 8.4 | Features, Bugfixes, Security Updates | -| 10.x.x | 12.4 | 8.1 - 8.4 | Bugfixes, Security Updates | +| 11.x.x | 13.4 | 8.2 - 8.5 | Features, Bugfixes, Security Updates | +| 10.x.x | 12.4 | 8.1 - 8.5 | Bugfixes, Security Updates | | 9.x.x | 12.4 | 8.1 - 8.4 | Security Updates | | 8.x.x | 10.4, 11.5 | 7.2+ | Security Updates | | 7.x.x | 10.4 | 7.2 - 7.4 | | diff --git a/composer.json b/composer.json index d4779a98..00db416c 100644 --- a/composer.json +++ b/composer.json @@ -48,7 +48,7 @@ } }, "require": { - "php": "~8.2.0 || ~8.3.0 || ~8.4.0", + "php": "~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0", "ext-json": "*", "ext-openssl": "*", "typo3/cms-core": "^13.4", diff --git a/ext_emconf.php b/ext_emconf.php index 90f83e22..ae5f0661 100644 --- a/ext_emconf.php +++ b/ext_emconf.php @@ -4,14 +4,14 @@ 'title' => 'Cart', 'description' => 'Shopping Cart(s) for TYPO3', 'category' => 'plugin', - 'version' => '11.5.0', + 'version' => '11.6.0', 'state' => 'stable', 'author' => 'Daniel Gohlke', 'author_email' => 'ext@extco.de', 'author_company' => 'extco.de UG (haftungsbeschränkt)', 'constraints' => [ 'depends' => [ - 'php' => '8.2.0-8.4.99', + 'php' => '8.2.0-8.5.99', 'typo3' => '13.4.0-13.4.99', 'extbase' => '13.4.0-13.4.99', 'fluid' => '13.4.0-13.4.99',