From 1dcccc90056235239d468c19cdf0dc7fc505bd5e Mon Sep 17 00:00:00 2001 From: Vladimir Vukanac Date: Tue, 3 Mar 2026 15:49:36 +0100 Subject: [PATCH 1/3] Add php 8.5 to the test matrix --- .github/workflows/php.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index decb80f..7507772 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -14,7 +14,7 @@ jobs: strategy: matrix: - version: [7.3, 7.4, 8.0, 8.1, 8.2, 8.3, 8.4] + version: [7.3, 7.4, 8.0, 8.1, 8.2, 8.3, 8.4, 8.5] runs-on: ubuntu-latest From 651505a6a85d890a317c01b5370ba9776f39a738 Mon Sep 17 00:00:00 2001 From: Vladimir Vukanac Date: Tue, 3 Mar 2026 15:53:57 +0100 Subject: [PATCH 2/3] Add quotes as suggested by Copilot Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- .github/workflows/php.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index 7507772..9db36ad 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -14,7 +14,7 @@ jobs: strategy: matrix: - version: [7.3, 7.4, 8.0, 8.1, 8.2, 8.3, 8.4, 8.5] + version: ['7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4', '8.5'] runs-on: ubuntu-latest From ad07dfa5f287c08f8874d4faf63eeeb66d5964e1 Mon Sep 17 00:00:00 2001 From: Vladimir Vukanac Date: Tue, 3 Mar 2026 15:54:55 +0100 Subject: [PATCH 3/3] Update Makefile to test php 8.4 and 8.5 --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index b7262a4..337889f 100644 --- a/Makefile +++ b/Makefile @@ -40,6 +40,8 @@ test: .PHONY: test-all test-all: + PHP_VERSION=8.5 $(MAKE) build update sniff test + PHP_VERSION=8.4 $(MAKE) build update sniff test PHP_VERSION=8.3 $(MAKE) build update sniff test PHP_VERSION=8.2 $(MAKE) build update sniff test PHP_VERSION=8.1 $(MAKE) build update sniff test