Skip to content

Commit

Permalink
Updating PHP modules detection
Browse files Browse the repository at this point in the history
  • Loading branch information
roberto-butti committed Mar 7, 2024
1 parent d14b110 commit 513ba1c
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion src/Lens/Traits/RuntimeLens.php
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [];
Expand Down

0 comments on commit 513ba1c

Please sign in to comment.