Raise SQLite runtime version

This commit is contained in:
Bernd Bestel 2026-03-06 18:17:38 +01:00
parent 95d490d6ff
commit 68bd83e104
No known key found for this signature in database
GPG Key ID: 71BD34C0D4891300
3 changed files with 3 additions and 5 deletions

View File

@ -50,7 +50,7 @@ See the website for more installation guides and troubleshooting help. → [h
### Platform support ### Platform support
- PHP 8.5 (with SQLite 3.34.0+) - PHP 8.5 (with SQLite 3.40+)
- Required PHP extensions: `fileinfo`, `pdo_sqlite`, `gd`, `ctype`, `intl`, `zlib`, `mbstring` - Required PHP extensions: `fileinfo`, `pdo_sqlite`, `gd`, `ctype`, `intl`, `zlib`, `mbstring`
- Recent Firefox, Chrome or Edge - Recent Firefox, Chrome or Edge

View File

@ -1,6 +1,4 @@
> 💡 PHP 8.5 is from now on supported. > ⚠️ PHP 8.5 (with SQLite 3.40+) is from now on the only supported runtime version.
>
> ⚠️ PHP 8.2 and 8.3 are no longer supported.
### New Feature: xxxx ### New Feature: xxxx

View File

@ -13,7 +13,7 @@ const REQUIRED_PHP_EXTENSIONS = ['fileinfo', 'pdo_sqlite', 'gd', 'ctype', 'intl'
]; ];
const REQUIRED_PHP_VERSION = '8.5.0'; const REQUIRED_PHP_VERSION = '8.5.0';
const REQUIRED_SQLITE_VERSION = '3.34.0'; const REQUIRED_SQLITE_VERSION = '3.40.0';
class PrerequisiteChecker class PrerequisiteChecker
{ {