From 4f2794deb12b5de63b762ac489d334ca5fd02b6f Mon Sep 17 00:00:00 2001 From: Cristina Cutus Date: Fri, 22 Mar 2024 13:55:20 +0100 Subject: [PATCH 1/2] [TASK] Add php 8.3 in composer.json Related: AUS-315 --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 14eab1d..f031dc0 100644 --- a/composer.json +++ b/composer.json @@ -10,7 +10,7 @@ "docs": "https://github.com/pluswerk/mail_logger/blob/master/Readme.md" }, "require": { - "php": "~8.1.0 || ~8.2.0", + "php": "~8.1.0 || ~8.2.0 || ~8.3.0", "composer-runtime-api": "^2", "typo3/cms-core": "^11.5.0 || ^12.4.0" }, From 334b6ca34a956aeb2dda3fd9f8f09284daf07f7a Mon Sep 17 00:00:00 2001 From: Cristina Cutus Date: Mon, 25 Mar 2024 09:31:28 +0100 Subject: [PATCH 2/2] [TASK] Add php 8.3 to github workflow Related: AUS-315 --- .github/workflows/tasks.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tasks.yml b/.github/workflows/tasks.yml index 81274a5..7988fdf 100644 --- a/.github/workflows/tasks.yml +++ b/.github/workflows/tasks.yml @@ -9,7 +9,7 @@ jobs: strategy: fail-fast: false matrix: - php: [ '8.1', '8.2' ] + php: [ '8.1', '8.2', '8.3' ] typo3: [ '11', '12' ] steps: - name: Setup PHP with PECL extension @@ -54,7 +54,7 @@ jobs: - name: Setup PHP uses: shivammathur/setup-php@v2 with: - php-version: '8.2' + php-version: '8.3' extensions: intl, mbstring, xml, soap, zip, curl - name: Install typo3/tailor