Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
},
"require-dev": {
"phpunit/phpunit": "^9.6.29",
"phpstan/phpstan": "^1.0.0",
"phpstan/phpstan-phpunit": "^1.0.0",
"phpstan/phpstan": "^2.1.31",
"phpstan/phpstan-phpunit": "^2.0.7",
"friendsofphp/php-cs-fixer": "^3.0",
"pedrotroller/php-cs-custom-fixer": "^2.19"
},
Expand All @@ -39,7 +39,7 @@
},
"scripts": {
"unit-tests": "vendor/bin/phpunit",
"static-analysis": "vendor/bin/phpstan analyse --ansi",
"static-analysis": "vendor/bin/phpstan analyse --memory-limit=256m --ansi",
"check-cs": "vendor/bin/php-cs-fixer fix --diff --dry-run --verbose",
"fix-cs": "vendor/bin/php-cs-fixer fix --verbose"
},
Expand Down
2 changes: 1 addition & 1 deletion phpstan.neon
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ parameters:
- tests/
inferPrivatePropertyTypeFromConstructor: true
reportUnmatchedIgnoredErrors: false
checkMissingIterableValueType: false
ignoreErrors:
- "#^Call to an undefined static method #"
- "#^Parameter \\#1 \\$command of class Symfony\\\\Component\\\\Process\\\\Process constructor expects array, string given\\.$#"
- "#[a-zA-Z0-9\\_]* no value type specified in iterable type array#"
Loading