Skip to content

Commit

Permalink
fix: disable timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
yusuftaufiq committed Apr 18, 2022
1 parent 1f273b0 commit 82188d4
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,14 @@
}
},
"scripts": {
"dumper:start": "./vendor/bin/var-dump-server --format=html > dump.html",
"dumper:serve": "@php -S localhost:8000 dump.html"
"dumper:start": [
"Composer\\Config::disableProcessTimeout",
"./vendor/bin/var-dump-server --format=html > dump.html"
],
"dumper:serve": [
"Composer\\Config::disableProcessTimeout",
"@php -S localhost:8000 dump.html"
]
},
"require": {
"php": ">=7.4",
Expand Down

0 comments on commit 82188d4

Please sign in to comment.