Add redis, igbinary extension for Windows

This commit is contained in:
crazywhalecc
2024-08-12 12:11:17 +08:00
committed by Jerry Ma
parent 17c27cb7e8
commit 51442dc9ac
3 changed files with 16 additions and 6 deletions

View File

@@ -20,12 +20,12 @@ $upx = true;
// If you want to test your added extensions and libs, add below (comma separated, example `bcmath,openssl`).
$extensions = match (PHP_OS_FAMILY) {
'Linux', 'Darwin' => 'iconv',
'Windows' => 'amqp,apcu,iconv',
'Windows' => 'igbinary,redis,session',
};
// If you want to test lib-suggests feature with extension, add them below (comma separated, example `libwebp,libavif`).
$with_libs = match (PHP_OS_FAMILY) {
'Linux', 'Darwin' => 'libcares',
'Linux', 'Darwin' => '',
'Windows' => '',
};