From 40937edef421dc51b4edfa887e0854461e3dcb26 Mon Sep 17 00:00:00 2001 From: Daniel Gohlke Date: Fri, 16 Feb 2024 00:04:45 +0100 Subject: [PATCH] [TASK] Add support for PHP 8.2 and 8.3 Related: #13 --- .github/workflows/ci.yaml | 6 ++++++ composer.json | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index ab0bef2..483796d 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -24,6 +24,8 @@ jobs: - 7.4 - 8.0 - 8.1 + - 8.2 + - 8.3 steps: - name: Checkout uses: actions/checkout@v3 @@ -70,6 +72,8 @@ jobs: - php-version: '7.4' - php-version: '8.0' - php-version: '8.1' + - php-version: '8.2' + - php-version: '8.3' steps: - uses: actions/checkout@v3 @@ -96,6 +100,8 @@ jobs: - php-version: '7.4' - php-version: '8.0' - php-version: '8.1' + - php-version: '8.2' + - php-version: '8.3' steps: - uses: actions/checkout@v3 diff --git a/composer.json b/composer.json index e5e0ddd..1b80ab2 100644 --- a/composer.json +++ b/composer.json @@ -30,7 +30,7 @@ } }, "require": { - "php": "~7.4.0 || ~8.0.0 || ~8.1.0", + "php": "~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0", "typo3/cms-backend": "^11.5", "typo3/cms-core": "^11.5", "typo3/cms-extbase": "^11.5",