mirror of
https://github.com/danog/psalm-insane-comparison.git
synced 2024-11-26 20:14:46 +01:00
32 lines
767 B
JSON
32 lines
767 B
JSON
{
|
|
"name": "orklah/psalm-insane-comparison",
|
|
"description": "Detects possible insane comparison (\"string\" == 0) to help migrate to PHP8",
|
|
"type": "psalm-plugin",
|
|
"minimum-stability": "stable",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "orklah"
|
|
}
|
|
],
|
|
"extra": {
|
|
"psalm" : {
|
|
"pluginClass": "Orklah\\PsalmInsaneComparison\\Plugin"
|
|
}
|
|
},
|
|
"require": {
|
|
"php": "^7.3",
|
|
"ext-simplexml": "*"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Orklah\\PsalmInsaneComparison\\": ["."],
|
|
"Orklah\\PsalmInsaneComparison\\Hooks\\": ["hooks"]
|
|
}
|
|
},
|
|
"require-dev": {
|
|
"vimeo/psalm": "^4.0",
|
|
"nikic/php-parser": "^4.0"
|
|
}
|
|
}
|