Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
"php": "8.1 - 8.5",
"ext-mbstring": "*",
"ext-pdo": "*",
"ext-pdo_sqlite": "*",
"yiisoft/db": "^2.0"
},
"require-dev": {
Expand Down