From 513ba1ca1e8af1d78face7c37c411a372508d77a Mon Sep 17 00:00:00 2001 From: Roberto Butti Date: Thu, 7 Mar 2024 21:47:17 +0100 Subject: [PATCH] Updating PHP modules detection --- src/Lens/Traits/RuntimeLens.php | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/src/Lens/Traits/RuntimeLens.php b/src/Lens/Traits/RuntimeLens.php index 221e412..b3f37ed 100644 --- a/src/Lens/Traits/RuntimeLens.php +++ b/src/Lens/Traits/RuntimeLens.php @@ -209,13 +209,23 @@ public function checkServerRequirements(): \HiFolks\LaraLens\ResultLens $helpInstall = [ "bcmath" => "BCMath Arbitrary Precision Mathematics: https://www.php.net/manual/en/bc.setup.php", "ctype" => "Character type checking: https://www.php.net/manual/en/book.ctype", + "curl" => "Client URL Library: https://www.php.net/manual/en/book.curl.php", + "dom" => "Document Object Model: https://www.php.net/manual/en/book.dom.php", "fileinfo" => "File Information: https://www.php.net/manual/en/book.fileinfo", + "filter" => "Data Filtering: https://www.php.net/manual/en/book.filter.php", "json" => "JavaScript Object Notation: https://www.php.net/manual/en/book.json", + "libxml" => "libxml: https://www.php.net/manual/en/book.libxml.php", "mbstring" => "Multibyte string: https://www.php.net/manual/en/book.mbstring.php", "openssl" => "OpenSSL: https://www.php.net/manual/en/book.openssl.php", + "pcre" => "Regular Expressions (Perl-Compatible): https://www.php.net/manual/en/book.pcre.php", "pdo" => "PHP Data Objects: https://www.php.net/manual/en/book.pdo.php", + "phar" => "Phar: https://www.php.net/manual/en/book.phar.php", + "reflection" => "Reflection: https://www.php.net/manual/en/book.reflection.php", + "simplexml" => "SimpleXML: https://www.php.net/manual/en/book.simplexml.php", + "spl" => "Standard PHP Library (SPL): https://www.php.net/manual/en/book.spl.php", "tokenizer" => "Tokenizer: https://www.php.net/manual/en/book.tokenizer.php", - "xml" => "XML Parser: https://www.php.net/manual/en/book.xml.php" + "xml" => "XML Parser: https://www.php.net/manual/en/book.xml.php", + "xmlwriter" => "XMLWriter: https://www.php.net/manual/en/book.xmlwriter.php" ]; $modulesOk = []; $modulesNotok = [];