From f7b054beb13674c9c0c6f9a966f50a877ffdb613 Mon Sep 17 00:00:00 2001 From: Toon Verwerft Date: Thu, 19 Mar 2026 09:44:29 +0100 Subject: [PATCH 1/2] feat: replace azjezz/psl with php-standard-library/php-standard-library Replace azjezz/psl with its drop-in replacement package php-standard-library/php-standard-library and add support for ^6.0. Closes #605 --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 8b65186f..4ff5c5a8 100644 --- a/composer.json +++ b/composer.json @@ -13,7 +13,7 @@ ], "require": { "php": "~8.3.0 || ~8.4.0 || ~8.5.0", - "azjezz/psl": "^3.0 || ^4.0 || ^5.0", + "php-standard-library/php-standard-library": "^3.0 || ^4.0 || ^5.0 || ^6.0", "laminas/laminas-code": "^4.17.0", "php-soap/cached-engine": "~0.3", "php-soap/engine": "^2.14.0", From e2d3de263dd31fdd0c48caaa6b650a3be473fca3 Mon Sep 17 00:00:00 2001 From: Toon Verwerft Date: Thu, 19 Mar 2026 09:49:59 +0100 Subject: [PATCH 2/2] chore: bump minimum versions of php-soap dependencies Bump to versions that include php-standard-library/php-standard-library support so that lowest dependency resolution passes CI. --- composer.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/composer.json b/composer.json index 4ff5c5a8..ab65e3ae 100644 --- a/composer.json +++ b/composer.json @@ -15,11 +15,11 @@ "php": "~8.3.0 || ~8.4.0 || ~8.5.0", "php-standard-library/php-standard-library": "^3.0 || ^4.0 || ^5.0 || ^6.0", "laminas/laminas-code": "^4.17.0", - "php-soap/cached-engine": "~0.3", - "php-soap/engine": "^2.14.0", - "php-soap/encoding": "~0.15", + "php-soap/cached-engine": "~0.6", + "php-soap/engine": "^2.19.0", + "php-soap/encoding": "~0.28", "php-soap/psr18-transport": "^1.7", - "php-soap/wsdl-reader": "~0.21", + "php-soap/wsdl-reader": "~0.31", "psr/event-dispatcher": "^1.0", "psr/log": "^1.0 || ^2.0 || ^3.0", "symfony/console": "~5.4 || ~6.0 || ~7.0 || ~8.0",