mirror of
https://github.com/shivammathur/setup-php.git
synced 2024-11-22 20:01:06 +07:00
Bump xdebug version for PHP7.4 on windows
This commit is contained in:
parent
ebeb82f894
commit
9550c7aa45
@ -11,7 +11,7 @@ describe('Extension tests', () => {
|
|||||||
expect(win32).toContain('Install-PhpExtension pcov');
|
expect(win32).toContain('Install-PhpExtension pcov');
|
||||||
win32 = await extensions.addExtension('xdebug, pcov', '7.4', 'win32');
|
win32 = await extensions.addExtension('xdebug, pcov', '7.4', 'win32');
|
||||||
const extension_url: string =
|
const extension_url: string =
|
||||||
'https://xdebug.org/files/php_xdebug-2.8.0beta2-7.4-vc15.dll';
|
'https://xdebug.org/files/php_xdebug-2.8.0-7.4-vc15.dll';
|
||||||
expect(win32).toContain(
|
expect(win32).toContain(
|
||||||
'Invoke-WebRequest -Uri ' +
|
'Invoke-WebRequest -Uri ' +
|
||||||
extension_url +
|
extension_url +
|
||||||
|
@ -118,7 +118,7 @@ function addExtensionWindows(extension_csv, version) {
|
|||||||
let install_command = '';
|
let install_command = '';
|
||||||
switch (version + extension) {
|
switch (version + extension) {
|
||||||
case '7.4xdebug':
|
case '7.4xdebug':
|
||||||
const extension_url = 'https://xdebug.org/files/php_xdebug-2.8.0beta2-7.4-vc15.dll';
|
const extension_url = 'https://xdebug.org/files/php_xdebug-2.8.0-7.4-vc15.dll';
|
||||||
install_command =
|
install_command =
|
||||||
'Invoke-WebRequest -Uri ' +
|
'Invoke-WebRequest -Uri ' +
|
||||||
extension_url +
|
extension_url +
|
||||||
|
@ -111,7 +111,7 @@ export async function addExtensionWindows(
|
|||||||
switch (version + extension) {
|
switch (version + extension) {
|
||||||
case '7.4xdebug':
|
case '7.4xdebug':
|
||||||
const extension_url: string =
|
const extension_url: string =
|
||||||
'https://xdebug.org/files/php_xdebug-2.8.0beta2-7.4-vc15.dll';
|
'https://xdebug.org/files/php_xdebug-2.8.0-7.4-vc15.dll';
|
||||||
install_command =
|
install_command =
|
||||||
'Invoke-WebRequest -Uri ' +
|
'Invoke-WebRequest -Uri ' +
|
||||||
extension_url +
|
extension_url +
|
||||||
|
Loading…
Reference in New Issue
Block a user