Update PHP extensions for Linux and Darwin

This commit is contained in:
Marc 2025-12-01 11:39:56 +01:00 committed by GitHub
parent 5a0fd40dc4
commit 7204d277b4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -50,14 +50,14 @@ $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' => 'bcmath',
'Linux', 'Darwin' => 'bcmath,xsl,xml',
'Windows' => 'bcmath',
};
// If you want to test shared extensions, add them below (comma separated, example `bcmath,openssl`).
$shared_extensions = match (PHP_OS_FAMILY) {
'Linux' => 'pcov',
'Darwin' => 'pcov',
'Linux' => '',
'Darwin' => '',
'Windows' => '',
};