Skip to content

Commit 26cbafd

Browse files
committed
Update codebase test suite
1 parent 4ae7743 commit 26cbafd

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,9 @@
7171
"scripts": {
7272
"phpcs": "PHP_CS_FIXER_IGNORE_ENV=1 php-cs-fixer fix -vvv --diff --dry-run --allow-risky=yes --ansi",
7373
"phpcs:fix": "php-cs-fixer fix -vvv --allow-risky=yes --ansi",
74-
"phpstan": "phpstan analyse -l max -c phpstan.neon src --memory-limit=256M --ansi",
74+
"phpstan": "phpstan analyse -c phpstan.neon --ansi --memory-limit=192M",
7575
"phpunit": "XDEBUG_MODE=coverage phpunit --coverage-text",
76+
"phpunit:min": "phpunit --no-coverage",
7677
"test": [
7778
"@phpunit",
7879
"@phpstan",

phpstan.neon

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ includes:
33
- vendor/phpstan/phpstan-phpunit/extension.neon
44
- vendor/phpstan/phpstan-phpunit/rules.neon
55
parameters:
6+
level: max
7+
paths:
8+
- src
69
ignoreErrors:
710
- message: '#has no value type specified in iterable type array.#'
811
path: src/Rules.php

0 commit comments

Comments
 (0)