Skip to content

Commit

Permalink
Disabling Composer extensions while running analysis in Mouf
Browse files Browse the repository at this point in the history
This way, buggy extensions have no impact on Mouf.
  • Loading branch information
moufmouf committed Nov 17, 2015
1 parent f4a7c7c commit 87e95ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Mouf/Composer/ComposerService.php
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ public function getComposer() {
} else {
$this->io = new BufferIO();
}
$this->composer = Factory::create($this->io);
$this->composer = Factory::create($this->io, null, true);
}
return $this->composer;
}
Expand Down Expand Up @@ -556,4 +556,4 @@ public function getComposerConfig() {
}
}

?>
?>

0 comments on commit 87e95ff

Please sign in to comment.