From bbf2dc64d9566794f90ddc0f8f223860b8430713 Mon Sep 17 00:00:00 2001 From: Ferdinand Thiessen Date: Tue, 28 Nov 2023 15:09:31 +0100 Subject: [PATCH] fix: Adjust composer scripts to work when only installing production dependencies Signed-off-by: Ferdinand Thiessen --- composer.json | 1 + 1 file changed, 1 insertion(+) diff --git a/composer.json b/composer.json index 3a26fe0d9..ca770515d 100644 --- a/composer.json +++ b/composer.json @@ -16,6 +16,7 @@ "@composer bin psalm install --ansi", "@composer bin cs-fixer install --ansi" ], + "bin": "echo 'bin not installed'", "cs:fix": "php-cs-fixer fix", "cs:check": "php-cs-fixer fix --dry-run --diff", "lint": "find . -name \\*.php -not -path './vendor*/*' -print0 | xargs -0 -n1 php -l",