Add Windows OneDrive to platform warnings
parent
f60b71616e
commit
beacdf4e51
|
@ -576,6 +576,13 @@ EOT
|
||||||
$warnings['xdebug_loaded'] = true;
|
$warnings['xdebug_loaded'] = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (defined('PHP_WINDOWS_VERSION_BUILD')
|
||||||
|
&& (version_compare(PHP_VERSION, '7.2.23', '<')
|
||||||
|
|| (version_compare(PHP_VERSION, '7.3.0', '>=')
|
||||||
|
&& version_compare(PHP_VERSION, '7.3.10', '<')))) {
|
||||||
|
$warnings['onedrive'] = PHP_VERSION;
|
||||||
|
}
|
||||||
|
|
||||||
if (!empty($errors)) {
|
if (!empty($errors)) {
|
||||||
foreach ($errors as $error => $current) {
|
foreach ($errors as $error => $current) {
|
||||||
switch ($error) {
|
switch ($error) {
|
||||||
|
@ -699,6 +706,11 @@ EOT
|
||||||
$text .= " xdebug.profiler_enabled = 0";
|
$text .= " xdebug.profiler_enabled = 0";
|
||||||
$displayIniMessage = true;
|
$displayIniMessage = true;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case 'onedrive':
|
||||||
|
$text = "The Windows OneDrive folder is not supported on PHP versions below 7.2.23 and 7.3.10.".PHP_EOL;
|
||||||
|
$text .= "Upgrade your PHP ({$current}) to use this location with Composer.".PHP_EOL;
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
$out($text, 'comment');
|
$out($text, 'comment');
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue