Update redis to 6.0.2, add alternative license file searcher (#539)

* Update redis to 6.0.2, add alternative license file searcher

* Update docs about source module
This commit is contained in:
Jerry Ma
2024-09-09 17:41:29 +08:00
committed by GitHub
parent c55ccf242b
commit ad098d085e
6 changed files with 60 additions and 10 deletions

View File

@@ -19,13 +19,13 @@ $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' => 'imap,swoole-hook-sqlite,swoole',
'Windows' => 'igbinary,redis,session',
'Linux', 'Darwin' => 'redis,igbinary',
'Windows' => 'redis,igbinary',
};
// 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' => '',
'Linux', 'Darwin' => 'liblz4',
'Windows' => '',
};