diff --git a/CHANGELOG.md b/CHANGELOG.md index be6f35ca..7d6ee9ea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ - Bug #413: Fix "GROUP BY" builder ignoring parameters (@vjik) - Enh #414: Explicitly import classes and constants in "use" section (@mspirkov) - Enh #415: Remove unnecessary files from Composer package (@mspirkov) +- Enh #416: Add `ext-pdo_sqlite` to `require` section of `composer.json` (@Tigrov) ## 2.0.0 December 05, 2025 diff --git a/README.md b/README.md index 28450ddb..aad94a16 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ Driver supports SQLite 3 or higher. ## Requirements - PHP 8.1 - 8.5. -- `pdo` PHP extension. +- `pdo_sqlite` PHP extension. - `mbstring` PHP extension. ## Installation diff --git a/composer.json b/composer.json index f29aed98..8c790e4c 100644 --- a/composer.json +++ b/composer.json @@ -34,6 +34,7 @@ "php": "8.1 - 8.5", "ext-mbstring": "*", "ext-pdo": "*", + "ext-pdo_sqlite": "*", "yiisoft/db": "^2.0" }, "require-dev": {