We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a3180d commit 92b6226Copy full SHA for 92b6226
.github/workflows/develop.yaml
@@ -63,10 +63,18 @@ jobs:
63
Invoke-WebRequest "https://github.com/php/pie/releases/download/0.8.0/pie.phar" -OutFile "C:\php\pie.phar"
64
shell: pwsh
65
66
+ - name: Setup PHP
67
+ run: |-
68
+ $ini = New-Item "C:\php\bin\php.ini" -Force
69
+ Add-Content $ini "extension_dir=C:\php\bin\ext"
70
+ Add-Content $ini "extension=php_openssl.dll"
71
+
72
- name: Check PHP
73
run: |-
- $env:PATH = "C:\php\devel;C:\php\bin;C:\php\deps\bin;$env:PATH"
74
C:\php\bin\php.exe -m
75
76
+ - name: Check PIE
77
78
C:\php\bin\php.exe C:\php\pie.phar --version
79
80
- name: Install Snappy
0 commit comments