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