Add sqlite support for Windows (#350)

* add sqlite support

* cs fix
This commit is contained in:
Jerry Ma
2024-02-23 11:14:51 +08:00
committed by GitHub
parent f498250001
commit 4ab7b6bfdc
5 changed files with 96 additions and 2 deletions

View File

@@ -14,7 +14,7 @@ declare(strict_types=1);
// If you want to test your added extensions and libs, add below (comma separated, example `bcmath,openssl`).
$extensions = match (PHP_OS_FAMILY) {
'Linux', 'Darwin' => 'event,gettext',
'Windows' => 'mbstring,iconv,dom,xml,xmlwriter,xmlreader,soap,simplexml',
'Windows' => 'mbstring,pdo_sqlite',
};
// If you want to test lib-suggests feature with extension, add them below (comma separated, example `libwebp,libavif`).