We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 18ba007 commit c3add24Copy full SHA for c3add24
src/Composer/Satis/Console/Application.php
@@ -41,6 +41,12 @@ public function __construct()
41
public function doRun(InputInterface $input, OutputInterface $output)
42
{
43
$this->registerCommands();
44
+
45
+ $styles = Factory::createAdditionalStyles();
46
+ foreach ($styles as $name => $style) {
47
+ $output->getFormatter()->setStyle($name, $style);
48
+ }
49
50
$this->io = new ConsoleIO($input, $output, $this->getHelperSet());
51
52
return parent::doRun($input, $output);
0 commit comments