From f21f833aedf39dac70f454d1c7bc2bcd2f43b2b3 Mon Sep 17 00:00:00 2001 From: DubbleClick Date: Sun, 30 Mar 2025 23:58:21 +0700 Subject: [PATCH] add phar?! --- 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 c8e2f8cb..881877e6 100644 --- a/src/globals/test-extensions.php +++ b/src/globals/test-extensions.php @@ -15,7 +15,7 @@ declare(strict_types=1); $test_php_version = [ // '8.1', // '8.2', - // '8.3', + '8.3', '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`). $extensions = match (PHP_OS_FAMILY) { - 'Linux', 'Darwin' => 'imagick', + 'Linux', 'Darwin' => 'imagick,phar', 'Windows' => 'pgsql,pdo_pgsql', };