Fixed required SQLite version in PrerequisiteChecker

This commit is contained in:
Bernd Bestel 2022-12-25 20:53:49 +01:00
parent 46c4cdb81a
commit 15f7ac3da0
No known key found for this signature in database
GPG Key ID: 71BD34C0D4891300

View File

@ -10,7 +10,7 @@ const REQUIRED_PHP_EXTENSIONS = ['fileinfo', 'pdo_sqlite', 'gd', 'ctype', 'json'
];
const REQUIRED_PHP_VERSION = '8.1.0';
const REQUIRED_SQLITE_VERSION = '3.22.0';
const REQUIRED_SQLITE_VERSION = '3.34.0';
class PrerequisiteChecker
{