Skip to content

Commit 0c89e22

Browse files
authored
Modify PHP extensions and base combination for Windows
Updated the list of PHP extensions for Windows and changed the base combination setting.
1 parent a85097e commit 0c89e22

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/globals/test-extensions.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
// If you want to test your added extensions and libs, add below (comma separated, example `bcmath,openssl`).
5252
$extensions = match (PHP_OS_FAMILY) {
5353
'Linux', 'Darwin' => 'zlib',
54-
'Windows' => 'com_dotnet',
54+
'Windows' => 'amqp,apcu,bcmath,bz2,calendar,ctype,curl,dba,dom,ds,exif,ffi,fileinfo,filter,ftp,gd,iconv,igbinary,libxml,mbregex,mbstring,mysqli,mysqlnd,opcache,openssl,pdo,pdo_mysql,pdo_sqlite,pdo_sqlsrv,phar,rar,redis,session,shmop,simdjson,simplexml,soap,sockets,sqlite3,sqlsrv,ssh2,sysvshm,tokenizer,xml,xmlreader,xmlwriter,yac,yaml,zip,zlib',
5555
};
5656

5757
// If you want to test shared extensions, add them below (comma separated, example `bcmath,openssl`).
@@ -75,7 +75,7 @@
7575
// note: combination is only available for *nix platform. Windows must use `none` combination
7676
$base_combination = match (PHP_OS_FAMILY) {
7777
'Linux', 'Darwin' => 'minimal',
78-
'Windows' => 'common',
78+
'Windows' => 'none',
7979
};
8080

8181
// -------------------------- code area, do not modify --------------------------

0 commit comments

Comments
 (0)