From d09a5099da934e7422382cde9dad2ff6e42a4d94 Mon Sep 17 00:00:00 2001 From: Khaled Huthaily Date: Sun, 2 Nov 2025 22:48:22 -0700 Subject: [PATCH] allow installation on PHP 8.5 This patch widens the PHP version constraint to include PHP 8.5. This change ensures continued compatibility for downstream packages such as `dompdf/dompdf`, which indirectly depend on this package through `php-svg-lib`. The reason for this change is to keep the `8.x` branch viable for projects that are not yet ready to migrate to `sabberworm v9`. --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index e3caf0cc..634e7222 100644 --- a/composer.json +++ b/composer.json @@ -23,7 +23,7 @@ } ], "require": { - "php": "^5.6.20 || ^7.0.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0", + "php": "^5.6.20 || ^7.0 || ~8.0 || ~8.1 || ~8.2 || ~8.3 || ~8.4 || ~8.5", "ext-iconv": "*" }, "require-dev": {