Add extension simdjson support (#402)

* add extension simdjson support

* add extension simdjson tests

* fix windows build for simdjson
This commit is contained in:
Jerry Ma
2024-04-02 16:57:59 +08:00
committed by GitHub
parent 9fd56987ef
commit c77dc1af6c
4 changed files with 51 additions and 2 deletions

View File

@@ -13,8 +13,8 @@ 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' => 'ds',
'Windows' => 'mbstring,pdo_sqlite,mbregex,ffi,ds',
'Linux', 'Darwin' => 'ds,simdjson',
'Windows' => 'mbstring,pdo_sqlite,mbregex,ffi,ds,simdjson',
};
// If you want to test lib-suggests feature with extension, add them below (comma separated, example `libwebp,libavif`).