]> _ Git - cubist_cms-back.git/commitdiff
#2810
authorVincent Vanwaelscappel <vincent@cubedesigners.com>
Tue, 11 Jun 2019 15:54:53 +0000 (17:54 +0200)
committerVincent Vanwaelscappel <vincent@cubedesigners.com>
Tue, 11 Jun 2019 15:54:53 +0000 (17:54 +0200)
src/app/Console/Commands/CubistCommand.php
src/app/Console/Commands/InstallCommand.php

index 8a507bdaa4c2cc5ea55588b23174799e029e3186..a9288483412771c5ce0a9fac725fdf67867109fd 100644 (file)
@@ -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);
index 1d9b8594044ae225667220d4a7a702ea38f8abcd..50b7b0ead46d964e6a980c33284ba01f8482aebc 100644 (file)
@@ -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"',