From 4fdf7fd6f970650f2a5e64773e048dd0e452fe61 Mon Sep 17 00:00:00 2001 From: Leonid Nikitin Date: Fri, 11 Oct 2024 01:11:19 +0500 Subject: [PATCH] Relax PHP extension version constraints in composer.json. Updated "ext-libxml" and "ext-dom" dependencies to accept any version. This change ensures broader compatibility across different environments without strictly requiring specific versions for these extensions. --- composer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 23ac26f..3427dc0 100644 --- a/composer.json +++ b/composer.json @@ -22,8 +22,8 @@ "illuminate/support": "^10.0|^11.0", "guzzlehttp/guzzle": "^7.0.1", "web-token/jwt-framework": "^3.0", - "ext-libxml": "^2.11.7", - "ext-dom": "^2.11.7" + "ext-libxml": "*", + "ext-dom": "*" }, "extra": { "laravel": { -- 2.45.2