From a9abbb06223f33dc576f6e3d9d966d79e6c78b9e Mon Sep 17 00:00:00 2001 From: chris Date: Fri, 24 Oct 2025 16:37:40 +0200 Subject: [PATCH 1/2] ci: add tests for PHP 8.5 --- .github/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 95e7f1c..36c6171 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -26,12 +26,12 @@ jobs: strategy: fail-fast: false matrix: - php: ['7.4', '8.0', '8.1', '8.2', '8.3', '8.4' ] + php: ['7.4', '8.0', '8.1', '8.2', '8.3', '8.4', '8.5' ] min_stability: [ '' ] name_suffix: [ '' ] composer_flags: [ '' ] include: - - php: '8.4' + - php: '8.5' min_stability: 'dev' name_suffix: ' (dev deps)' - php: '7.4' From f92fe5e53ac976afa6e2f1af2164f3e3abc3d7a8 Mon Sep 17 00:00:00 2001 From: Christopher Georg Date: Sat, 22 Nov 2025 17:56:48 +0100 Subject: [PATCH 2/2] fix: PHP 8.5 deprecation --- Processor.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Processor.php b/Processor.php index 6dc208f..04c11e8 100644 --- a/Processor.php +++ b/Processor.php @@ -92,7 +92,7 @@ private function processParams(array $config, array $expectedParams, array $actu $keepOutdatedParams = false; if (isset($config['keep-outdated'])) { - $keepOutdatedParams = (boolean) $config['keep-outdated']; + $keepOutdatedParams = (bool) $config['keep-outdated']; } if (!$keepOutdatedParams) {