Close style tags to avoid bleed (#11972)
parent
829e0e767f
commit
ede152bd65
|
@ -96,7 +96,7 @@ trait PackageDiscoveryTrait
|
|||
|
||||
foreach ($requires as $requirement) {
|
||||
if (isset($requirement['version']) && Preg::isMatch('{^\d+(\.\d+)?$}', $requirement['version'])) {
|
||||
$io->writeError('<warning>The "'.$requirement['version'].'" constraint for "'.$requirement['name'].'" appears too strict and will likely not match what you want. See https://getcomposer.org/constraints');
|
||||
$io->writeError('<warning>The "'.$requirement['version'].'" constraint for "'.$requirement['name'].'" appears too strict and will likely not match what you want. See https://getcomposer.org/constraints</warning>');
|
||||
}
|
||||
|
||||
if (!isset($requirement['version'])) {
|
||||
|
|
|
@ -404,7 +404,7 @@ class Application extends BaseApplication
|
|||
}
|
||||
|
||||
if (isset($startTime)) {
|
||||
$io->writeError('<info>Memory usage: '.round(memory_get_usage() / 1024 / 1024, 2).'MiB (peak: '.round(memory_get_peak_usage() / 1024 / 1024, 2).'MiB), time: '.round(microtime(true) - $startTime, 2).'s');
|
||||
$io->writeError('<info>Memory usage: '.round(memory_get_usage() / 1024 / 1024, 2).'MiB (peak: '.round(memory_get_peak_usage() / 1024 / 1024, 2).'MiB), time: '.round(microtime(true) - $startTime, 2).'s</info>');
|
||||
}
|
||||
|
||||
if ($proxyManager->needsTransitionWarning()) {
|
||||
|
|
Loading…
Reference in New Issue