Bump version to 1.9.4

This commit is contained in:
Shivam Mathur
2020-08-03 14:31:25 +05:30
parent db0bbd209b
commit 3160874a27
5 changed files with 599 additions and 596 deletions

View File

@ -1,27 +1,6 @@
import * as path from 'path';
import * as utils from './utils';
/**
* Function to get Xdebug version compatible with php versions
*
* @param version
*/
export async function getXdebugVersion(version: string): Promise<string> {
switch (version) {
case '5.3':
return '2.2.7';
case '5.4':
return '2.4.1';
case '5.5':
case '5.6':
return '2.5.5';
case '7.0':
return '2.7.2';
default:
return '2.9.6';
}
}
/**
* Install and enable extensions for darwin
*