From 6eea565babaeea565d73848dbde9be05e21d9bd3 Mon Sep 17 00:00:00 2001 From: Your Name Date: Sat, 29 Aug 2026 23:21:43 +0930 Subject: [PATCH] chore: add composer psalm:report script for a full local txt report Adds a psalm:report script that ignores the baseline and writes a full human-readable report to psalm-report.txt, including informational issues, so all outstanding items to fix are surfaced in one file. --- composer.json | 1 + 1 file changed, 1 insertion(+) diff --git a/composer.json b/composer.json index f86338950..184ffb399 100644 --- a/composer.json +++ b/composer.json @@ -102,6 +102,7 @@ "analyse": "./vendor/bin/phpstan analyse --memory-limit=512M", "psalm": "./vendor/bin/psalm", "psalm:baseline": "./vendor/bin/psalm --update-baseline", + "psalm:report": "./vendor/bin/psalm --ignore-baseline --no-cache --show-info=true --report=psalm-report.txt --report-show-info=true", "test": [ "docker compose -f docker-compose.test.yml up -d --wait", "./vendor/bin/pest --compact",