OXDEV-3559 Fix memory limit issues with PHPStan

This commit is contained in:
Florian Engelhardt 2020-07-29 10:38:57 +02:00
parent 8c4b19b495
commit 9fa8c1bc60
No known key found for this signature in database
GPG Key ID: 39B8DAD75A95B500

View File

@ -6,11 +6,7 @@
"license": ["GPL-3.0"], "license": ["GPL-3.0"],
"extra": { "extra": {
"oxideshop": { "oxideshop": {
"target-directory": "oe/graphql-module", "target-directory": "oe/graphql-module"
"blacklist-filter": [
"src/**/*.php",
"tests/**/*.php"
]
} }
}, },
"require": { "require": {
@ -49,7 +45,7 @@
], ],
"test:lint": "php-cs-fixer fix --dry-run", "test:lint": "php-cs-fixer fix --dry-run",
"test:syntax": "parallel-lint src/ tests/ metadata.php", "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:unit": "phpunit -c tests/phpunit.xml tests/Unit/",
"test": [ "test": [
"@test:syntax", "@test:syntax",