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 GitHub
parent f64dddeeb4
commit 262202d43f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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';
} }