|
@@ -130,6 +130,13 @@ class ConsoleIO extends BaseIO
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
+ // hack to keep our usage BC with symfony<2.8 versions
|
|
|
+ // this removes the quiet output but there is no way around it
|
|
|
+ // see https://github.com/composer/composer/pull/4913
|
|
|
+ if (OutputInterface::VERBOSITY_QUIET === 0) {
|
|
|
+ $sfVerbosity = OutputInterface::OUTPUT_NORMAL;
|
|
|
+ }
|
|
|
+
|
|
|
if (null !== $this->startTime) {
|
|
|
$memoryUsage = memory_get_usage() / 1024 / 1024;
|
|
|
$timeSpent = microtime(true) - $this->startTime;
|