psalm-not-empty/composer.json

31 lines
671 B
JSON
Raw Normal View History

2021-02-21 09:25:52 +01:00
{
2021-02-21 10:09:30 +01:00
"name": "orklah/psalm-not-empty",
2021-02-21 09:25:52 +01:00
"description": "Automatically change empty() into a more explicit expression",
"type": "psalm-plugin",
"license": "MIT",
"authors": [
{
"name": "orklah"
}
],
"extra": {
"psalm" : {
"pluginClass": "Orklah\\NotEmpty\\Plugin"
}
},
"require": {
"php": "^7.3",
2021-02-24 18:57:39 +01:00
"vimeo/psalm": "^4.6.1"
2021-02-21 09:25:52 +01:00
},
"autoload": {
"psr-4": {
"Orklah\\NotEmpty\\": ["./src"]
}
},
"require-dev": {
"nikic/php-parser": "^4.0",
"phpunit/phpunit": "^9.5",
"psalm/plugin-phpunit": "^0.15.0"
}
}