From ee43bf51d5be02ab39f30e515967aeb70d3efc4c Mon Sep 17 00:00:00 2001 From: bim-g Date: Sun, 25 Feb 2024 22:54:06 +0200 Subject: [PATCH 1/2] [ENH] update composer for requirement module --- composer.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index d3a5282..63bfcbf 100644 --- a/composer.json +++ b/composer.json @@ -43,6 +43,8 @@ ], "require": { "php" : ">=7.4", - "ext-mbstring": "*" + "ext-mbstring": "*", + "ext-libxml": "*", + "ext-dom": "*" } } From 008dcd4d2eace386b256c7397e2358aa2674a119 Mon Sep 17 00:00:00 2001 From: bim-g Date: Sun, 25 Feb 2024 22:54:28 +0200 Subject: [PATCH 2/2] [FIX] add missing class module --- src/Core/View.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Core/View.php b/src/Core/View.php index 1ade45e..f3d38e4 100644 --- a/src/Core/View.php +++ b/src/Core/View.php @@ -5,6 +5,7 @@ use \DOMDocument; use \DOMXPath; use Exception; +use Wepesi\Core\Http\Response; use function libxml_clear_errors; use function libxml_use_internal_errors;