Extend Grocy REQUIRED_PHP_EXTENSIONS

After installing Grocy on FreeBSD, even with all extensions installed that are listed in REQUIRED_PHP_EXTENSIONS, Grocy still couldn't start. The added 3 PHP Extensions are also needed to run Grocy.
This commit is contained in:
Daniel Tihanyi 2021-07-20 16:46:27 +02:00 committed by GitHub
parent d871ed7b53
commit a82ab47bd3
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', 'ctype', 'json', 'intl', 'zlib']; const REQUIRED_PHP_EXTENSIONS = ['fileinfo', 'pdo_sqlite', 'gd', 'ctype', 'json', 'intl', 'zlib', 'filter', 'iconv', 'tokenizer'];
const REQUIRED_SQLITE_VERSION = '3.9.0'; const REQUIRED_SQLITE_VERSION = '3.9.0';
class PrerequisiteChecker class PrerequisiteChecker