From 31248a67f54eb51d20e2f84cac682fb7386bb11c Mon Sep 17 00:00:00 2001 From: Alex Karajos Date: Thu, 19 Dec 2024 08:14:38 +0200 Subject: [PATCH] Issue #10: Increased PHPStan memory_limit to `1G` --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 11d14e7..ded2722 100644 --- a/composer.json +++ b/composer.json @@ -95,7 +95,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",