mirror of
https://github.com/danog/psalm-not-empty.git
synced 2024-11-26 20:04:54 +01:00
33 lines
730 B
JSON
33 lines
730 B
JSON
{
|
|
"name": "orklah/psalm-not-empty",
|
|
"description": "Automatically change empty() into a more explicit expression",
|
|
"type": "psalm-plugin",
|
|
"minimum-stability": "dev",
|
|
"prefer-stable": true,
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "orklah"
|
|
}
|
|
],
|
|
"extra": {
|
|
"psalm" : {
|
|
"pluginClass": "Orklah\\NotEmpty\\Plugin"
|
|
}
|
|
},
|
|
"require": {
|
|
"php": "^7.3",
|
|
"vimeo/psalm": "master"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Orklah\\NotEmpty\\": ["./src"]
|
|
}
|
|
},
|
|
"require-dev": {
|
|
"nikic/php-parser": "^4.0",
|
|
"phpunit/phpunit": "^9.5",
|
|
"psalm/plugin-phpunit": "^0.15.0"
|
|
}
|
|
}
|