From 8f4d0bc6be868ac0b1c936398dc6ff5db9f47111 Mon Sep 17 00:00:00 2001 From: Thomas David Baker Date: Thu, 31 Oct 2024 13:06:57 -0700 Subject: [PATCH] Set threads=1 for psalm because of https://github.com/vimeo/psalm/issues/11067 If you actually find this slow you could remove it because it's just a visual bug really. --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 1cbb968a3..abb32839e 100644 --- a/composer.json +++ b/composer.json @@ -7,7 +7,7 @@ "tests": "vendor/bin/phpunit --stop-on-defect tests", "lint": "vendor/bin/phpcs -d memory_limit=2G --runtime-set testVersion 8.1 .", "autofix": "vendor/bin/phpcbf -d memory_limit=2G --runtime-set testVersion 8.1 .", - "analyze": "vendor/bin/phpstan --memory-limit=2G && vendor/bin/psalm --no-cache", + "analyze": "vendor/bin/phpstan --memory-limit=2G && vendor/bin/psalm --no-cache --threads=1", "jstests": "bun test" }, "require": {