Merge pull request #8490 from johnstevenson/onedrive

Add Windows OneDrive to platform warnings
main
Jordi Boggiano 5 years ago committed by GitHub
commit bfdb028e50
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -576,6 +576,13 @@ EOT
$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)) {
foreach ($errors as $error => $current) {
switch ($error) {
@ -699,6 +706,11 @@ EOT
$text .= " xdebug.profiler_enabled = 0";
$displayIniMessage = true;
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');
}

Loading…
Cancel
Save