From 4c73991b7352637e4ec66aa19b29999838bf008d Mon Sep 17 00:00:00 2001 From: alexmerlin Date: Tue, 10 Dec 2024 13:48:02 +0200 Subject: [PATCH] Issue #304: Increased PHPStan memory_limit to 1G Signed-off-by: alexmerlin --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index d4a4ade..c39543a 100644 --- a/composer.json +++ b/composer.json @@ -102,7 +102,7 @@ "cs-check": "phpcs", "cs-fix": "phpcbf", "serve": "php -S 0.0.0.0:8080 -t public/", - "static-analysis": "phpstan analyse", + "static-analysis": "phpstan analyse --memory-limit 1G", "test": "phpunit --colors=always", "test-coverage": "phpunit --colors=always --coverage-clover clover.xml", "twig-cs-check": "vendor/bin/twig-cs-fixer lint --config=config/twig-cs-fixer.php",