From 234a90475416899e2b65c64754ce2740e373fae6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roger=20Vil=C3=A0?= Date: Wed, 18 Jan 2023 21:59:40 +0100 Subject: [PATCH] Support PHP 8.2 (#443) * Support PHP 8.2 * Add PHP 8.2 support to test-suite.yml --- .github/workflows/test-suite.yml | 3 ++- composer.json | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-suite.yml b/.github/workflows/test-suite.yml index 8506d89..1a73d94 100644 --- a/.github/workflows/test-suite.yml +++ b/.github/workflows/test-suite.yml @@ -22,6 +22,7 @@ jobs: - "7.4" - "8.0" - "8.1" + - "8.2" operating-system: - "ubuntu-latest" @@ -134,4 +135,4 @@ jobs: run: "composer install --no-interaction --no-progress --no-suggest" - name: "Mutation Tests" - run: "composer test:mutation" \ No newline at end of file + run: "composer test:mutation" diff --git a/composer.json b/composer.json index 8d526d6..71d8c39 100644 --- a/composer.json +++ b/composer.json @@ -15,7 +15,7 @@ } ], "require": { - "php": "^7.4.2 || ~8.0 || ~8.1", + "php": "^7.4.2 || ~8.0 || ~8.1 || ~8.2", "ext-filter": "*", "ext-json": "*", "ext-simplexml": "*",