add phar?!

This commit is contained in:
DubbleClick
2025-03-30 23:58:21 +07:00
parent 0c6dd7a577
commit f21f833aed

View File

@@ -15,7 +15,7 @@ declare(strict_types=1);
$test_php_version = [ $test_php_version = [
// '8.1', // '8.1',
// '8.2', // '8.2',
// '8.3', '8.3',
'8.4', '8.4',
]; ];
@@ -42,7 +42,7 @@ $prefer_pre_built = true;
// If you want to test your added extensions and libs, add below (comma separated, example `bcmath,openssl`). // If you want to test your added extensions and libs, add below (comma separated, example `bcmath,openssl`).
$extensions = match (PHP_OS_FAMILY) { $extensions = match (PHP_OS_FAMILY) {
'Linux', 'Darwin' => 'imagick', 'Linux', 'Darwin' => 'imagick,phar',
'Windows' => 'pgsql,pdo_pgsql', 'Windows' => 'pgsql,pdo_pgsql',
}; };