From c44b8b1029e11b2b9a5d41ecd69af4758bc575d6 Mon Sep 17 00:00:00 2001 From: henderkes Date: Sat, 31 May 2025 22:20:03 +0700 Subject: [PATCH] test xz and brotli as well --- src/globals/test-extensions.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/globals/test-extensions.php b/src/globals/test-extensions.php index e2f0ca12..ed6c6970 100644 --- a/src/globals/test-extensions.php +++ b/src/globals/test-extensions.php @@ -45,13 +45,13 @@ $prefer_pre_built = false; // If you want to test your added extensions and libs, add below (comma separated, example `bcmath,openssl`). $extensions = match (PHP_OS_FAMILY) { - 'Linux', 'Darwin' => 'xsl,simplexml,xlswriter', + 'Linux', 'Darwin' => 'brotli,xsl,simplexml,xlswriter,xz', 'Windows' => 'xlswriter,openssl', }; // If you want to test shared extensions, add them below (comma separated, example `bcmath,openssl`). $shared_extensions = match (PHP_OS_FAMILY) { - 'Linux' => 'xdebug,intl,pgsql', + 'Linux' => 'xdebug,intl,pgsql,imagick', 'Windows', 'Darwin' => '', };