Skip to content

Commit

Permalink
Merge pull request #411 from TheoD02/fix/composer_with_no_interaction
Browse files Browse the repository at this point in the history
fix: Add `--no-interaction` flag to composer run method
  • Loading branch information
pyrech authored Apr 14, 2024
2 parents 2acf570 + 602c683 commit 3dde2c7
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/Import/Remote/Composer.php
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ private function run(array $args, callable $callback): void

$args[] = '--working-dir';
$args[] = $directory;
$args[] = '--no-interaction';

$composerApplication = new ComposerApplication();
$composerApplication->setAutoExit(false);
Expand Down

0 comments on commit 3dde2c7

Please sign in to comment.