File tree Expand file tree Collapse file tree 1 file changed +7
-12
lines changed Expand file tree Collapse file tree 1 file changed +7
-12
lines changed Original file line number Diff line number Diff line change @@ -49,20 +49,15 @@ jobs:
4949 - name : Setup PHP (Windows)
5050 if : matrix.os == 'windows-latest'
5151 run : |
52- choco install php --version=8.2
53- refreshenv
54- php -v
52+ choco install php --version=8.2 --params '"/ExtensionList:mbstring,curl,openssl,xml"'
53+ refreshenv
54+ php -v
55+ shell : pwsh
5556
56- - name : Install Composer (Windows)
57+ - name : Install dependencies (Windows)
5758 if : matrix.os == 'windows-latest'
58- run : |
59- php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
60- php composer-setup.php
61- php -r "unlink('composer-setup.php');"
62- mkdir -p C:\tools\composer
63- move composer.phar C:\tools\composer\composer
64- echo "C:\tools\composer" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
65- shell : pwsh
59+ run : composer install --prefer-dist --no-progress --ignore-platform-req=ext-pcntl
60+ shell : bash
6661
6762 - name : Install Composer (Unix)
6863 if : matrix.os != 'windows-latest'
You can’t perform that action at this time.
0 commit comments