From a384db6ee8065b53905843ce4cae1adaf33419f4 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Tue, 8 Sep 2020 07:01:53 +1000 Subject: [PATCH] Fix for composer --no-dev --- app/Console/Commands/PostUpdate.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Console/Commands/PostUpdate.php b/app/Console/Commands/PostUpdate.php index f66d651062f2..37f349908dfd 100644 --- a/app/Console/Commands/PostUpdate.php +++ b/app/Console/Commands/PostUpdate.php @@ -65,7 +65,7 @@ class PostUpdate extends Command putenv('COMPOSER_HOME=' . __DIR__ . '/vendor/bin/composer'); - $input = new ArrayInput(array('command' => 'install')); + $input = new ArrayInput(array('command' => 'install', '--no-dev' => 'true')); $application = new Application(); $application->setAutoExit(false); $application->run($input);