From 00dce1fd88c8f5ff72f49b249ddf81f42c608b18 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Milan=20Felix=20=C5=A0ulc?= Date: Fri, 3 May 2024 21:55:55 +0200 Subject: [PATCH] Makefile: increase phpstan memory limit --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 4bf15899..53fd9a41 100644 --- a/Makefile +++ b/Makefile @@ -16,7 +16,7 @@ csf: vendor/bin/phpcbf --standard=ruleset.xml --extensions=php,phpt --tab-width=4 --ignore=tests/tmp --colors -nsp src tests phpstan: - vendor/bin/phpstan analyse -c phpstan.neon + vendor/bin/phpstan analyse -c phpstan.neon --memory-limit=512M tests: vendor/bin/tester -s -p php --colors 1 -C tests/Cases