Added check for mbstring PHP extension (required by eluceo/ical, references #1603)

This commit is contained in:
Bernd Bestel 2021-09-06 22:19:36 +02:00
parent 14bb04d285
commit a323bca9ec
No known key found for this signature in database
GPG Key ID: 71BD34C0D4891300

View File

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