Skip to content

Commit

Permalink
fix: composer repl script times out after 300 seconds
Browse files Browse the repository at this point in the history
The solution is to disable the timeout:
https://getcomposer.org/doc/06-config.md#process-timeout.
  • Loading branch information
geoffreyvanwyk committed Jun 6, 2024
1 parent 10a93db commit b147362
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
]
}
}

0 comments on commit b147362

Please sign in to comment.