Merge pull request #3951 from greg0ire/sa-with-psalm
Setup static analysis with Psalm
Showing
baseline.xml
0 → 100644
... | ... | @@ -42,14 +42,18 @@ |
"jetbrains/phpstorm-stubs": "^2019.1", | ||
"phpstan/phpstan": "^0.12", | ||
"phpunit/phpunit": "^8.4.1", | ||
"symfony/console": "^2.0.5|^3.0|^4.0|^5.0" | ||
"symfony/console": "^2.0.5|^3.0|^4.0|^5.0", | ||
"vimeo/psalm": "^3.11" | ||
}, | ||
"suggest": { | ||
"symfony/console": "For helpful console commands such as SQL execution and import of files." | ||
}, | ||
"bin": ["bin/doctrine-dbal"], | ||
"config": { | ||
"sort-packages": true | ||
"sort-packages": true, | ||
"platform": { | ||
"php": "7.2.0" | ||
} | ||
}, | ||
"autoload": { | ||
"psr-4": { "Doctrine\\DBAL\\": "lib/Doctrine/DBAL" } | ||
... | ... |
psalm.xml
0 → 100644
Please register or sign in to comment