diff --git a/config/source.json b/config/source.json index 6838f050..2647c85e 100644 --- a/config/source.json +++ b/config/source.json @@ -646,9 +646,8 @@ } }, "xz": { - "type": "ghrel", - "repo": "tukaani-project/xz", - "match": "xz-.+\\.tar\\.gz", + "type": "url", + "url": "https://fossies.org/linux/misc/xz-5.4.6.tar.xz", "license": { "type": "file", "path": "COPYING" diff --git a/src/globals/test-extensions.php b/src/globals/test-extensions.php index e608ec0d..63394824 100644 --- a/src/globals/test-extensions.php +++ b/src/globals/test-extensions.php @@ -13,13 +13,13 @@ declare(strict_types=1); // If you want to test your added extensions and libs, add below (comma separated, example `bcmath,openssl`). $extensions = match (PHP_OS_FAMILY) { - 'Linux', 'Darwin' => 'intl,pdo_sqlite,sqlite3,curl,openssl,tokenizer,bcmath,bz2,calendar,dba,ftp,iconv,mysqli,mbstring,mbregex,xml,simplexml,ctype,dom,pdo,filter,session,zlib,fileinfo,pdo_mysql,posix,sockets,shmop,sodium,sysvmsg,sysvsem,sysvshm,gd,zip,gmp,redis,xmlwriter,phar,exif,xmlreader,readline,pcntl,soap,imagick,ffi,password-argon2,pgsql,pdo_pgsql,imap,ldap,xsl', + 'Linux', 'Darwin' => 'xml,imagick', 'Windows' => 'mbstring,pdo_sqlite,mbregex,ffi', }; // If you want to test lib-suggests feature with extension, add them below (comma separated, example `libwebp,libavif`). $with_libs = match (PHP_OS_FAMILY) { - 'Linux', 'Darwin' => 'nghttp2', + 'Linux', 'Darwin' => 'xz', 'Windows' => '', }; @@ -27,7 +27,7 @@ $with_libs = match (PHP_OS_FAMILY) { // You can use `common`, `bulk`, `minimal` or `none`. // note: combination is only available for *nix platform. Windows must use `none` combination $base_combination = match (PHP_OS_FAMILY) { - 'Linux', 'Darwin' => 'none', + 'Linux', 'Darwin' => 'minimal', 'Windows' => 'none', };