From 1c9fbdb032524d868987bf33f27e6c6e6bf5e1d5 Mon Sep 17 00:00:00 2001 From: crazywhalecc Date: Fri, 1 Aug 2025 15:01:55 +0800 Subject: [PATCH] Use none base combination --- src/globals/test-extensions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/globals/test-extensions.php b/src/globals/test-extensions.php index 5b53cb23..c5e4cde2 100644 --- a/src/globals/test-extensions.php +++ b/src/globals/test-extensions.php @@ -73,7 +73,7 @@ $with_libs = match (PHP_OS_FAMILY) { // You can use `common`, `bulk`, `minimal` or `none`. // note: combination is only available for *nix platform. Windows must use `none` combination $base_combination = match (PHP_OS_FAMILY) { - 'Linux', 'Darwin' => 'common', + 'Linux', 'Darwin' => 'none', 'Windows' => 'none', };