From b1473628123c2a557033eb7d8339789694413ad4 Mon Sep 17 00:00:00 2001 From: Geoffrey Bernardo van Wyk Date: Thu, 6 Jun 2024 16:15:09 +0200 Subject: [PATCH] fix: composer repl script times out after 300 seconds The solution is to disable the timeout: https://getcomposer.org/doc/06-config.md#process-timeout. --- composer.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index f4f8b6d..4565f3f 100644 --- a/composer.json +++ b/composer.json @@ -27,6 +27,9 @@ "build": "vendor/bin/phel build --no-cache", "format": "vendor/bin/phel format", "test": "vendor/bin/phel test", - "repl": "vendor/bin/phel repl" + "repl": [ + "Composer\\Config::disableProcessTimeout", + "vendor/bin/phel repl" + ] } }