From c14cba6b53eeebfa5fd11eee74d94124699741a3 Mon Sep 17 00:00:00 2001 From: Daniel Siepmann Date: Sun, 8 Jan 2023 15:34:37 +0100 Subject: [PATCH] Add PHP 8.2 support (#101) --- .github/workflows/ci.yaml | 11 +++++++++++ Documentation/Changelog/2.1.0.rst | 2 +- composer.json | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index cbb2c18..3bcbbc4 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -32,6 +32,7 @@ jobs: - 7.4 - 8.0 - 8.1 + - 8.2 steps: - name: Checkout uses: actions/checkout@v3 @@ -112,9 +113,15 @@ jobs: - db-version: '8' php-version: '8.1' typo3-version: '^11.5' + - db-version: '8' + php-version: '8.2' + typo3-version: '^11.5' - db-version: '8' php-version: '8.1' typo3-version: '~12.1.0' + - db-version: '8' + php-version: '8.2' + typo3-version: '~12.1.0' steps: - uses: actions/checkout@v3 @@ -157,8 +164,12 @@ jobs: typo3-version: '^11.5' - php-version: '8.1' typo3-version: '^11.5' + - php-version: '8.2' + typo3-version: '^11.5' - php-version: '8.1' typo3-version: '~12.1.0' + - php-version: '8.2' + typo3-version: '~12.1.0' steps: - uses: actions/checkout@v3 diff --git a/Documentation/Changelog/2.1.0.rst b/Documentation/Changelog/2.1.0.rst index 978f8de..3baedbf 100644 --- a/Documentation/Changelog/2.1.0.rst +++ b/Documentation/Changelog/2.1.0.rst @@ -9,7 +9,7 @@ Nothing Features -------- -Nothing +* Support PHP 8.2 Fixes ----- diff --git a/composer.json b/composer.json index c658c99..23f3748 100644 --- a/composer.json +++ b/composer.json @@ -28,7 +28,7 @@ "require": { "doctrine/dbal": "^2.12 || ^3.3", "ext-mbstring": "*", - "php": "~7.3.0 || ~7.4.0 || ~8.0.0 || ~8.1.0", + "php": "~7.3.0 || ~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0", "psr/http-message": "^1.0", "psr/http-server-handler": "^1.0", "psr/http-server-middleware": "^1.0",