|
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' => 'xml,imagick', |
17 |
| - 'Windows' => 'mbstring,pdo_sqlite,mbregex,ffi', |
| 16 | + 'Linux', 'Darwin' => 'ds', |
| 17 | + 'Windows' => 'mbstring,pdo_sqlite,mbregex,ffi,ds', |
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' => 'xz', |
| 22 | + 'Linux', 'Darwin' => '', |
23 | 23 | 'Windows' => '',
|
24 | 24 | };
|
25 | 25 |
|
26 | 26 | // Please change your test base combination. We recommend testing with `common`.
|
27 | 27 | // You can use `common`, `bulk`, `minimal` or `none`.
|
28 | 28 | // note: combination is only available for *nix platform. Windows must use `none` combination
|
29 | 29 | $base_combination = match (PHP_OS_FAMILY) {
|
30 |
| - 'Linux', 'Darwin' => 'minimal', |
| 30 | + 'Linux', 'Darwin' => 'common', |
31 | 31 | 'Windows' => 'none',
|
32 | 32 | };
|
33 | 33 |
|
|
0 commit comments