mirror of
https://github.com/shivammathur/setup-php.git
synced 2024-11-22 20:01:06 +07:00
Fixed xdebug version for PHP 5.6 and 7.0
This commit is contained in:
parent
3e8d887b0d
commit
1e2c96a4b4
@ -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';
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user