Add mbregex support for windows (#351)

* add mbregex support for windows

* cs fix

* fix curl http2 support
This commit is contained in:
Jerry Ma
2024-02-23 11:41:35 +08:00
committed by GitHub
parent 4ab7b6bfdc
commit df0e37cd0f
6 changed files with 56 additions and 5 deletions

View File

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