From 9905c0be109aaa75600fdf949809faa1adb6beef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Bouc=CC=8Cek?= Date: Wed, 13 Mar 2024 15:59:57 +0100 Subject: [PATCH] PHP: Add support for PHP 8.3 --- .github/workflows/code_analysis.yaml | 3 +++ composer.json | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/code_analysis.yaml b/.github/workflows/code_analysis.yaml index 5b53e68..452ef86 100644 --- a/.github/workflows/code_analysis.yaml +++ b/.github/workflows/code_analysis.yaml @@ -16,12 +16,15 @@ jobs: - '8.0' - '8.1' - '8.2' + - '8.3' + actions: - name: PHPStan run: composer phpstan - name: Unit tests run: vendor/bin/tester tests -s -C + versions: - name: newest arg: '' diff --git a/composer.json b/composer.json index ae7aac0..2caf0c2 100644 --- a/composer.json +++ b/composer.json @@ -15,7 +15,7 @@ } ], "require": { - "php": "~7.2.0 || ~7.3.0 || ~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0", + "php": "~7.2.0 || ~7.3.0 || ~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0", "ext-json": "*" }, "require-dev": {