From 8550efae6b85285a427d5d914eeb5c8ebd104f4f Mon Sep 17 00:00:00 2001 From: Vincent Vanwaelscappel Date: Tue, 11 Jun 2019 17:54:53 +0200 Subject: [PATCH] #2810 --- src/app/Console/Commands/CubistCommand.php | 2 +- src/app/Console/Commands/InstallCommand.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/Console/Commands/CubistCommand.php b/src/app/Console/Commands/CubistCommand.php index 8a507bd..a928848 100644 --- a/src/app/Console/Commands/CubistCommand.php +++ b/src/app/Console/Commands/CubistCommand.php @@ -27,7 +27,7 @@ class CubistCommand extends Command { $this->echo('info', $beforeNotice ? ' ' . $beforeNotice : $command); - $process = new Process($command, null, null, null, 50, null); + $process = new Process($command, null, null, null, 180, null); $process->run(function ($type, $buffer) { if (Process::ERR === $type) { $this->echo('comment', $buffer); diff --git a/src/app/Console/Commands/InstallCommand.php b/src/app/Console/Commands/InstallCommand.php index 1d9b859..50b7b0e 100644 --- a/src/app/Console/Commands/InstallCommand.php +++ b/src/app/Console/Commands/InstallCommand.php @@ -21,7 +21,7 @@ class InstallCommand extends CubistCommand $devPackages = ['barryvdh/laravel-ide-helper', 'filp/whoops', 'laravel/tinker']; $commands = [ - 'Install dev dependencies' => ['composer require --dev ' . implode(' ' . $devPackages)], + 'Install dev dependencies' => ['composer require --dev ' . implode(' ' , $devPackages)], "Dropzone" => 'php artisan gaspertrix:backpack:dropzone:install', 'Laravel media library' => [ 'php artisan vendor:publish --provider="Spatie\MediaLibrary\MediaLibraryServiceProvider" --tag="migrations"', -- 2.39.5