require at least 5.6.38, do not check for Log.php anymore

This commit is contained in:
Uwe Steinmann 2019-06-24 12:36:55 +02:00
parent eccbc5ebd6
commit ee57a4b25b

View File

@ -1413,7 +1413,7 @@ class Settings { /* {{{ */
}
// Check PHP version
if (version_compare(PHP_VERSION, '5.2.0') < 0) {
if (version_compare(PHP_VERSION, '5.6.38') < 0) {
$result["php_version"] = array(
"status" => "versiontolow",
"type" => "error",
@ -1452,6 +1452,8 @@ class Settings { /* {{{ */
}
// Check for Log.php
// Do not check for Log anymore, because it is in the vendor directory
/*
if (!Settings::findInIncPath('Log.php')) {
$result["pear_log"] = array(
"status" => "notfound",
@ -1459,6 +1461,7 @@ class Settings { /* {{{ */
"suggestion" => "install_pear_package_log"
);
}
*/
// Check for HTTP/WebDAV/Server.php
if (!Settings::findInIncPath('HTTP/WebDAV/Server.php')) {