Fixed xdebug version for PHP 5.6 and 7.0

This commit is contained in:
Graham Campbell
2020-07-11 12:43:32 +01:00
committed by Shivam Mathur
parent 3e8d887b0d
commit 1e2c96a4b4

View File

@ -13,7 +13,10 @@ export async function getXdebugVersion(version: string): Promise<string> {
case '5.4': case '5.4':
return '2.4.1'; return '2.4.1';
case '5.5': case '5.5':
case '5.6':
return '2.5.5'; return '2.5.5';
case '7.0':
return '2.7.2';
default: default:
return '2.9.6'; return '2.9.6';
} }