Skip to content

Commit

Permalink
Merge pull request #43 from madewithlove/enforce-verbosity-on-sub-pro…
Browse files Browse the repository at this point in the history
…cesses

Enforce verbose output on sub processes
  • Loading branch information
jdrieghe authored Apr 20, 2023
2 parents 7cf1e86 + 4537cbc commit bfeb4b0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,4 @@ jobs:
- name: Install dependencies
run: composer update
- name: Run License Checker
run: bin/license-checker check
run: bin/license-checker check --quiet
2 changes: 1 addition & 1 deletion src/Composer/DependencyTreeRetriever.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public function getDependencyTree(bool $noDev): string

$noDevArguments = $noDev ? ['--no-dev'] : [];

$process = new Process(array_merge(['composer', 'show', '-t', '-f', 'json'], $noDevArguments));
$process = new Process(array_merge(['composer', 'show', '-t', '-f', 'json', '-v'], $noDevArguments));
$process->run();

if (!$process->isSuccessful()) {
Expand Down
2 changes: 1 addition & 1 deletion src/Composer/UsedLicensesRetriever.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public function getComposerLicenses(bool $noDev): array

$noDevArguments = $noDev ? ['--no-dev'] : [];

$process = new Process(array_merge(['composer', 'license', '-f', 'json'], $noDevArguments));
$process = new Process(array_merge(['composer', 'license', '-f', 'json', '-v'], $noDevArguments));
$process->run();

if (!$process->isSuccessful()) {
Expand Down

0 comments on commit bfeb4b0

Please sign in to comment.