Skip to content

Commit 3a31472

Browse files
committed
#133: SQLite3 [Transition SQLite3 to exceptions](php/php-src#11058)
1 parent a44e7fc commit 3a31472

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[
2+
{
3+
"name": "SQLite3Exception",
4+
"ext_min": "8.3.0alpha3",
5+
"php_min": "8.3.0alpha3"
6+
}
7+
]

src/Application/Command/Init/InitHandler.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1240,7 +1240,10 @@ private function majorReleaseDefinitionProvider(): Generator
12401240
];
12411241

12421242
yield 'sqlite3' => [
1243-
'classes' => ['53'],
1243+
'classes' => [
1244+
'53',
1245+
'83',
1246+
],
12441247
'const' => ['80'],
12451248
'constants' => ['53', '71'],
12461249
'iniEntries' => ['53', '56'],

0 commit comments

Comments
 (0)