We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b792cfe commit 30ef95cCopy full SHA for 30ef95c
.github/workflows/ci.yml
@@ -44,6 +44,11 @@ jobs:
44
run: |
45
choco install php --version=8.2 --params '"/ExtensionList:mbstring,curl,openssl,xml"'
46
refreshenv
47
+ # Download CA bundle
48
+ Invoke-WebRequest -Uri https://curl.se/ca/cacert.pem -OutFile C:\tools\cacert.pem
49
+ # Configure PHP to use the CA bundle
50
+ $phpIni = php --ini | Select-String "Loaded Configuration File" | ForEach-Object { $_.Line.Split()[-1] }
51
+ Add-Content $phpIni "`nopenssl.cafile = C:\tools\cacert.pem"
52
php -v
53
shell: pwsh
54
0 commit comments