From 792504c69199955c2b146e1b50748268e8cff55d Mon Sep 17 00:00:00 2001 From: Tigrov Date: Sat, 21 Feb 2026 15:24:40 +0700 Subject: [PATCH 1/3] Install version 2.* --- README.md | 4 ++-- composer.json | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 28450ddb..124ea07d 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 @@ -35,7 +35,7 @@ Driver supports SQLite 3 or higher. The package could be installed with [Composer](https://getcomposer.org): ```shell -composer require yiisoft/db-sqlite +composer require yiisoft/db-sqlite:2.* ``` > [!IMPORTANT] 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": { From cc049896a6ada670b92c0e203a50caad17070b8a Mon Sep 17 00:00:00 2001 From: Tigrov Date: Sat, 21 Feb 2026 15:32:56 +0700 Subject: [PATCH 2/3] Require `pdo_sqlite` --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 124ea07d..aad94a16 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ Driver supports SQLite 3 or higher. The package could be installed with [Composer](https://getcomposer.org): ```shell -composer require yiisoft/db-sqlite:2.* +composer require yiisoft/db-sqlite ``` > [!IMPORTANT] From 3299ed24955d8e430c4668fa018b56d94d4b9d37 Mon Sep 17 00:00:00 2001 From: Tigrov Date: Sun, 22 Feb 2026 12:02:03 +0700 Subject: [PATCH 3/3] Add line to CHANGELOG.md [skip ci] --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) 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