From d8b4cc1b9684c0172e4a9368922161ba75f12b9d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20B=C3=BCrk?= Date: Thu, 19 Dec 2024 20:10:47 +0100 Subject: [PATCH] [TASK] Update `deeplcom/deepl-php:^1.10.1` This change updates the version of the used third party dependency to support PHP8.4 out of the box and align with TYPO3 v12 and v13 support. Tests are now also executed with PHP 8.4. Used command(s): ```shell composer require --no-update \ "deeplcom/deepl-php":"^1.10.1" ``` --- .github/workflows/testcore12.yml | 2 +- .github/workflows/testcore13.yml | 2 +- composer.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/testcore12.yml b/.github/workflows/testcore12.yml index 522f2bd1..c39ac30d 100644 --- a/.github/workflows/testcore12.yml +++ b/.github/workflows/testcore12.yml @@ -77,7 +77,7 @@ jobs: strategy: fail-fast: false matrix: - php-version: [ '8.1', '8.2', '8.3' ] + php-version: [ '8.1', '8.2', '8.3', '8.4' ] permissions: # actions: read|write|none actions: none diff --git a/.github/workflows/testcore13.yml b/.github/workflows/testcore13.yml index 01ddfb47..c1a0a347 100644 --- a/.github/workflows/testcore13.yml +++ b/.github/workflows/testcore13.yml @@ -77,7 +77,7 @@ jobs: strategy: fail-fast: false matrix: - php-version: [ '8.2', '8.3' ] + php-version: [ '8.2', '8.3', '8.4' ] permissions: # actions: read|write|none actions: none diff --git a/composer.json b/composer.json index ba178b90..0ec645c0 100644 --- a/composer.json +++ b/composer.json @@ -76,7 +76,7 @@ "ext-curl": "*", "ext-json": "*", "ext-pdo": "*", - "deeplcom/deepl-php": ">=1.6.0 <=1.8.0", + "deeplcom/deepl-php": "^1.10.1", "typo3/cms-backend": "^12.4.2 || ^13.4", "typo3/cms-core": "^12.4.2 || ^13.4", "typo3/cms-extbase": "^12.4.2 || ^13.4",