File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -47,9 +47,9 @@ install:
47
47
- ps : |
48
48
# Check if installation is cached
49
49
if (!(Test-Path c:\tools\php)) {
50
- appveyor-retry cinst --params '""/InstallDir:C:\tools\php""' --ignore-checksums -y php --version 7.4.27
50
+ appveyor-retry choco install --params '""/InstallDir:C:\tools\php""' --ignore-checksums -y php --version 7.4.27
51
51
# install sqlite
52
- appveyor-retry cinst -y sqlite
52
+ appveyor-retry choco install -y sqlite
53
53
Get-ChildItem -Path c:\tools\php
54
54
cd c:\tools\php
55
55
@@ -66,7 +66,7 @@ install:
66
66
Add-Content php.ini "`n extension=php_curl.dll"
67
67
68
68
# Get and install the latest stable sqlsrv DLL's
69
- $DLLVersion = (Invoke-WebRequest "https://pecl.php.net/rest/r/sqlsrv/stable.txt").Content
69
+ $DLLVersion = "5.9.0"
70
70
cd c:\tools\php\ext
71
71
$source = "https://windows.php.net/downloads/pecl/releases/sqlsrv/$($DLLVersion)/php_sqlsrv-$($DLLVersion)-$($env:php)-nts-vc15-x64.zip"
72
72
$destination = "c:\tools\php\ext\php_sqlsrv-$($DLLVersion)-$($env:php)-nts-vc15-x64.zip"
You can’t perform that action at this time.
0 commit comments