From f02588ac553ed14bdade9a1cea833a64bf82570c Mon Sep 17 00:00:00 2001 From: Alexey Kopytko Date: Wed, 3 Dec 2025 08:41:46 +0900 Subject: [PATCH 1/3] Let go of PHP versions 7.4, 8.0, and 8.1 Removed PHP versions 7.4, 8.0, and 8.1 from the workflow matrix and updated the include section to reflect only PHP 8.2 with lowest dependencies. --- .github/workflows/tests.yaml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index c1e8b4b..068ffbd 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -17,14 +17,11 @@ jobs: strategy: matrix: php-version: - - '7.4' - - '8.0' - - '8.1' - '8.2' - '8.3' - '8.4' include: - - { php-version: '7.4', dependencies: '--prefer-lowest', legend: 'with lowest dependencies' } + - { php-version: '8.2', dependencies: '--prefer-lowest', legend: 'with lowest dependencies' } name: PHP ${{ matrix.php-version }} ${{ matrix.legend }} From be8582cb7a972909d75e3a64548284c8642c2c13 Mon Sep 17 00:00:00 2001 From: Alexey Kopytko Date: Wed, 3 Dec 2025 08:42:15 +0900 Subject: [PATCH 2/3] Update PHP requirement to version 8.2 --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 3fdc946..10ce7ee 100644 --- a/composer.json +++ b/composer.json @@ -27,7 +27,7 @@ } ], "require": { - "php": "^7.4 || ^8.0" + "php": "^8.2" }, "require-dev": { "ergebnis/composer-normalize": ">=2.47", From 0b757df3ef745b7a4c7be9c2ce88889912d0ca8e Mon Sep 17 00:00:00 2001 From: Alexey Kopytko Date: Thu, 4 Dec 2025 15:35:45 +0900 Subject: [PATCH 3/3] Update PHP version requirements in README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2a66e46..9f7148a 100644 --- a/README.md +++ b/README.md @@ -115,9 +115,9 @@ Adding filters has never been easier. ## Requirements - * PHP 7.4+ + * PHP 8.2+ -Some earlier versions could be used with PHP 5.3/5.4/5.5/5.6, though they're not supported anymore. +Some earlier versions could be used with PHP 5.x/7.x, though they're not supported anymore. ## Issues