From 3ee2eafb21b1d1e167a5b694547e5f4d602c653c Mon Sep 17 00:00:00 2001 From: Vincent Langlet Date: Fri, 23 Jan 2026 14:05:45 +0100 Subject: [PATCH 1/2] feat: support for PHP 8.5 --- .github/workflows/pull-requests.yml | 2 +- composer.json | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/pull-requests.yml b/.github/workflows/pull-requests.yml index c573c04..b350968 100644 --- a/.github/workflows/pull-requests.yml +++ b/.github/workflows/pull-requests.yml @@ -11,7 +11,7 @@ jobs: strategy: max-parallel: 4 matrix: - php-version: ["8.1", "8.2", "8.3"] + php-version: ["8.1", "8.2", "8.3", "8.4", "8.5"] steps: - name: Cloning repo diff --git a/composer.json b/composer.json index 2a5b3da..2ce7d39 100644 --- a/composer.json +++ b/composer.json @@ -15,10 +15,10 @@ "ext-gmp": "*", "php-http/discovery": "^1.14", "psr/simple-cache": ">=1.0", - "psr/http-factory-implementation": "1.0", - "psr/http-client-implementation": "1.0", - "psr/http-message-implementation": "1.0", - "softcreatr/jsonpath": "^0.10.0" + "psr/http-factory-implementation": "^1.0", + "psr/http-client-implementation": "^1.0", + "psr/http-message-implementation": "^1.0", + "softcreatr/jsonpath": "^0.10.0 || ^0.11.0" }, "require-dev": { "guzzlehttp/guzzle": "^7.3", From 6290f95f03feceea56b47e9c59f1e62100e5da51 Mon Sep 17 00:00:00 2001 From: Vincent Langlet Date: Fri, 23 Jan 2026 16:01:56 +0100 Subject: [PATCH 2/2] chore: try jsonpath 1.0.2 --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 2ce7d39..79de6a0 100644 --- a/composer.json +++ b/composer.json @@ -18,7 +18,7 @@ "psr/http-factory-implementation": "^1.0", "psr/http-client-implementation": "^1.0", "psr/http-message-implementation": "^1.0", - "softcreatr/jsonpath": "^0.10.0 || ^0.11.0" + "softcreatr/jsonpath": "^0.10.0 || ^0.11.0 || ^1.0" }, "require-dev": { "guzzlehttp/guzzle": "^7.3",