Composer will prefer source now on install

This commit is contained in:
DariusIII
2016-06-25 15:07:12 +02:00
parent d93693f26b
commit 4b4b294e18
3 changed files with 4 additions and 2 deletions
+1 -1
View File
@@ -182,7 +182,7 @@ class Update extends \app\extensions\console\Command
protected function composer()
{
$this->initialiseGit();
$command = 'composer install';
$command = 'composer install --prefer-source';
if (in_array($this->gitBranch, $this->git->getBranchesStable())) {
$command .= ' --no-dev';
}