test xz and brotli as well

This commit is contained in:
henderkes 2025-05-31 22:20:03 +07:00
parent 8312ce4d4c
commit c44b8b1029

View File

@ -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' => '',
};