diff --git a/composer.json b/composer.json index ec84b73..713f0b6 100644 --- a/composer.json +++ b/composer.json @@ -19,7 +19,8 @@ "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0", "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0", "psy/psysh": "^0.10.4|^0.11.1", - "symfony/var-dumper": "^4.3.4|^5.0|^6.0" + "symfony/var-dumper": "^4.3.4|^5.0|^6.0", + "ext-json": "*" }, "require-dev": { "mockery/mockery": "~1.3.3|^1.4.2", diff --git a/src/Console/ChainCommands.php b/src/Console/ChainCommands.php index 18b757c..bdd92a8 100644 --- a/src/Console/ChainCommands.php +++ b/src/Console/ChainCommands.php @@ -107,8 +107,8 @@ public function handle(): void $this->table(['Command', '', 'Status', 'Output'], $rows); } - $this->info("Display a list of commands that are not supported."); if ($showIgnoredList) { + $this->info("Display a list of commands that are not supported."); $rows = []; foreach($this->toBeIgnored as $key => $row) { $rows[] = [$key, $row];