From b4feb3c177f9d6b82f60a5c81dc1e528f80de7fb Mon Sep 17 00:00:00 2001 From: Krzysztof Grabania Date: Fri, 12 Jul 2024 08:57:48 +0200 Subject: [PATCH] chore: run phpcs and phpcbf in parallel --- composer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 4729022c..7ec93906 100644 --- a/composer.json +++ b/composer.json @@ -69,8 +69,8 @@ } }, "scripts": { - "phpcbf": "phpcbf", - "phpcs": "phpcs", + "phpcbf": "phpcbf --parallel=4", + "phpcs": "phpcs --parallel=4", "phplint": "parallel-lint --exclude node_modules --exclude vendor --exclude dependencies .", "phpstan": "phpstan analyze --memory-limit=-1", "generate-stubs": "generate-stubs --finder=compat/stub-finder.php --out=compat/stubs.php --force",