From e601fa3c5c9039e428b159f2fc5cdc8d566a7448 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?benjamin=20melan=C3=A7on?= Date: Tue, 29 Jan 2019 08:18:06 -0500 Subject: [PATCH] Make process timeout 10 minutes instead of default 5 When Drupal core is unzipped there's a notice of a 300 second timeout, then it switches to the ZipArchive class; there's speculation that later errors that don't specify the timeout but also result in unzip failures. See: https://stackoverflow.com/questions/28177019/composer-exceeded-the-timeout-of-300-seconds-while-installing-sylius-on-composer https://www.drupal.org/project/drupal/issues/3000865 --- composer.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 620cf48..152d09c 100644 --- a/composer.json +++ b/composer.json @@ -105,6 +105,7 @@ } }, "config": { - "sort-packages": true + "sort-packages": true, + "process-timeout": 600 } }