mirror of
https://github.com/grocy/grocy.git
synced 2026-04-05 12:26:15 +02:00
Added note about core extensions
This commit is contained in:
parent
a82ab47bd3
commit
52a47fddd8
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user