File tree Expand file tree Collapse file tree 3 files changed +3
-11
lines changed Expand file tree Collapse file tree 3 files changed +3
-11
lines changed Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ install:
79
79
$destination = "c:\tools\php\ext\php_pdo_sqlsrv-$($DLLVersion)-$($env:php)-nts-vc15-x64.zip"
80
80
Invoke-WebRequest $source -OutFile $destination
81
81
7z x -y php_pdo_sqlsrv-$($DLLVersion)-$($env:php)-nts-vc15-x64.zip > $null
82
- $DLLVersion = "2.6.0"
82
+ $DLLVersion = (Invoke-WebRequest "https://pecl.php.net/rest/r/xdebug/stable.txt").Content
83
83
$source = "https://xdebug.org/files/php_xdebug-$($DLLVersion)-$($env:php)-vc15-nts-x86_64.dll"
84
84
$destination = "c:\tools\php\ext\php_xdebug.dll"
85
85
Invoke-WebRequest $source -OutFile $destination
Original file line number Diff line number Diff line change 4
4
5
5
echo " Installing extension"
6
6
7
- if [ " $TRAVIS_PHP_VERSION " == " 7.3" ] || [ " $TRAVIS_PHP_VERSION " == " nightly" ] ; then
8
- pecl install pdo_sqlsrv-5.4.0preview
9
- else
10
- pecl install pdo_sqlsrv
11
- fi
7
+ pecl install pdo_sqlsrv
Original file line number Diff line number Diff line change 4
4
5
5
echo " Installing extension"
6
6
7
- if [ " $TRAVIS_PHP_VERSION " == " 7.3" ] || [ " $TRAVIS_PHP_VERSION " == " nightly" ] ; then
8
- pecl install sqlsrv-5.4.0preview
9
- else
10
- pecl install sqlsrv
11
- fi
7
+ pecl install sqlsrv
You can’t perform that action at this time.
0 commit comments