From 46555b3ae069cef7b43210ed63cb168c5e020672 Mon Sep 17 00:00:00 2001 From: Christopher Georg Date: Wed, 4 Dec 2024 14:59:35 +0100 Subject: [PATCH] Enhancement: Add support for PHP 8.2 --- .github/settings.yml | 2 ++ .github/workflows/integrate.yaml | 1 + composer.json | 2 +- 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/settings.yml b/.github/settings.yml index 9e63fc3..77c0c92 100644 --- a/.github/settings.yml +++ b/.github/settings.yml @@ -30,6 +30,8 @@ branches: - context: "Tests (8.0, lowest)" - context: "Tests (8.1, highest)" - context: "Tests (8.1, lowest)" + - context: "Tests (8.2, highest)" + - context: "Tests (8.2, lowest)" strict: false restrictions: null diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index 1af44fe..f423d4c 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -250,6 +250,7 @@ jobs: - "7.4" - "8.0" - "8.1" + - "8.2" dependencies: - "lowest" diff --git a/composer.json b/composer.json index cc1cb9e..9d2d8d3 100644 --- a/composer.json +++ b/composer.json @@ -20,7 +20,7 @@ } ], "require": { - "php": "~7.1.0 || ~7.2.0 || ~7.3.0 || ~7.4.0 || ~8.0.0 || ~8.1.0" + "php": "~7.1.0 || ~7.2.0 || ~7.3.0 || ~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0" }, "require-dev": { "phpunit/phpunit": "^7.5.0 || ^8.5.23",