Add ffi support for windows x64 (#357)

* add ffi support for windows x64

* add ffi test
This commit is contained in:
Jerry Ma
2024-02-29 15:34:06 +08:00
committed by GitHub
parent 254764761d
commit 842e0add29
6 changed files with 76 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' => 'pgsql,pdo_pgsql',
'Windows' => 'mbstring,pdo_sqlite,mbregex',
'Windows' => 'mbstring,pdo_sqlite,mbregex,ffi',
};
// If you want to test lib-suggests feature with extension, add them below (comma separated, example `libwebp,libavif`).