Merge branch 'main' into fix/php85

This commit is contained in:
Marc
2025-10-24 10:47:29 +02:00
committed by GitHub
3 changed files with 6 additions and 6 deletions

View File

@@ -13,7 +13,7 @@ declare(strict_types=1);
// test php version (8.1 ~ 8.4 available, multiple for matrix)
$test_php_version = [
// '8.1',
'8.1',
// '8.2',
// '8.3',
// '8.4',
@@ -55,8 +55,8 @@ $extensions = match (PHP_OS_FAMILY) {
// If you want to test shared extensions, add them below (comma separated, example `bcmath,openssl`).
$shared_extensions = match (PHP_OS_FAMILY) {
'Linux' => 'mysqli',
'Darwin' => 'zip',
'Linux' => '',
'Darwin' => '',
'Windows' => '',
};