We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b232fd commit 9cff816Copy full SHA for 9cff816
src/TimberInstaller.php
@@ -46,6 +46,8 @@ public function install()
46
$process->setTty(true);
47
}
48
49
+ $process->setTimeout(3600);
50
+
51
$process->run(function ($type, $line) {
52
$this->output->writeln($line);
53
});
src/Traits/Composer.php
@@ -16,6 +16,7 @@ protected function install($package)
16
{
17
$command = $this->findComposer() . ' require ' . $package;
18
$process = new Process($command);
19
20
21
echo $line . PHP_EOL;
22
0 commit comments