|
13 | 13 |
|
14 | 14 | // If you want to test your added extensions and libs, add below (comma separated, example `bcmath,openssl`).
|
15 | 15 | $extensions = match (PHP_OS_FAMILY) {
|
16 |
| - 'Linux', 'Darwin' => 'yac', |
17 |
| - 'Windows' => 'mbstring,pdo_sqlite,mbregex,yac', |
| 16 | + 'Linux', 'Darwin' => 'dba', |
| 17 | + 'Windows' => 'mbstring,pdo_sqlite,mbregex,dba', |
18 | 18 | };
|
19 | 19 |
|
20 | 20 | // If you want to test lib-suggests feature with extension, add them below (comma separated, example `libwebp,libavif`).
|
21 | 21 | $with_libs = match (PHP_OS_FAMILY) {
|
22 |
| - 'Linux', 'Darwin' => '', |
23 |
| - 'Windows' => '', |
| 22 | + 'Linux', 'Darwin' => 'qdbm', |
| 23 | + 'Windows' => 'qdbm', |
24 | 24 | };
|
25 | 25 |
|
26 | 26 | // Please change your test base combination. We recommend testing with `common`.
|
@@ -62,7 +62,6 @@ function _getCombination(string $type = 'common'): string
|
62 | 62 |
|
63 | 63 | if (PHP_OS_FAMILY === 'Windows') {
|
64 | 64 | $final_extensions_cmd = '"' . $final_extensions . '"';
|
65 |
| - $final_libs = $final_libs === '' ? '' : ('"' . $final_libs . '"'); |
66 | 65 | } else {
|
67 | 66 | $final_extensions_cmd = $final_extensions;
|
68 | 67 | }
|
|
0 commit comments