From 9fa8c1bc604e95f829599ebc6876b48d6c60febb Mon Sep 17 00:00:00 2001 From: Florian Engelhardt Date: Wed, 29 Jul 2020 10:38:57 +0200 Subject: [PATCH] OXDEV-3559 Fix memory limit issues with PHPStan --- composer.json | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/composer.json b/composer.json index 43c04e1..beab275 100644 --- a/composer.json +++ b/composer.json @@ -6,11 +6,7 @@ "license": ["GPL-3.0"], "extra": { "oxideshop": { - "target-directory": "oe/graphql-module", - "blacklist-filter": [ - "src/**/*.php", - "tests/**/*.php" - ] + "target-directory": "oe/graphql-module" } }, "require": { @@ -49,7 +45,7 @@ ], "test:lint": "php-cs-fixer fix --dry-run", "test:syntax": "parallel-lint src/ tests/ metadata.php", - "test:static": "phpstan analyse src/", + "test:static": "phpstan --memory-limit=-1 analyse src/", "test:unit": "phpunit -c tests/phpunit.xml tests/Unit/", "test": [ "@test:syntax",