Added note about core extensions

This commit is contained in:
Bernd Bestel 2021-08-04 17:20:28 +02:00
parent a82ab47bd3
commit 52a47fddd8
No known key found for this signature in database
GPG Key ID: 71BD34C0D4891300

View File

@ -4,7 +4,11 @@ class ERequirementNotMet extends Exception
{
}
const REQUIRED_PHP_EXTENSIONS = ['fileinfo', 'pdo_sqlite', 'gd', 'ctype', 'json', 'intl', 'zlib', 'filter', 'iconv', 'tokenizer'];
const REQUIRED_PHP_EXTENSIONS = ['fileinfo', 'pdo_sqlite', 'gd', 'ctype', 'json', 'intl', 'zlib',
// These are core extensions, so normally can't be missing, but seems to be the case, however, on FreeBSD
'filter', 'iconv', 'tokenizer'
];
const REQUIRED_SQLITE_VERSION = '3.9.0';
class PrerequisiteChecker