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
No known key found for this signature in database
GPG Key ID: 3E13E4C8591ACC2A

View File

@ -13,7 +13,10 @@ export async function getXdebugVersion(version: string): Promise<string> {
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';
}