Added ctype requirement to PrerequisiteChecker (#1208)

This commit is contained in:
Marc Ole Bulling 2020-12-22 15:07:34 +01:00 committed by GitHub
parent e3504464e5
commit 7ba48d5160
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,7 +4,7 @@ class ERequirementNotMet extends Exception
{
}
const REQUIRED_PHP_EXTENSIONS = ['fileinfo', 'pdo_sqlite', 'gd'];
const REQUIRED_PHP_EXTENSIONS = ['fileinfo', 'pdo_sqlite', 'gd', 'ctype']];
const REQUIRED_SQLITE_VERSION = '3.8.3';
class PrerequisiteChecker