psalm-plugin-phpunit/composer.json
Bruce Weirdan 18ffce8944
fixed composer check
- Dropped `tests` folder references (tests are not there)
- Dropped `@test` reference from `composer check` (phpunit is not
depended on, tests are absent)
- Ignored `stubs` folder (cannot really be checked by psalm) in
`psalm.xml`
2018-12-09 00:24:35 +02:00

39 lines
840 B
JSON
Executable File

{
"name": "psalm/plugin-phpunit",
"description": "Psalm plugin for PHPUnit",
"type": "psalm-plugin",
"license": "MIT",
"authors": [
{
"name": "Matt Brown",
"email": "github@muglug.com"
}
],
"require": {
"phpunit/phpunit": "^5.0 || ^6.0 || ^7.0",
"vimeo/psalm": "^3.0 || dev-master"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.3"
},
"extra": {
"psalm": {
"pluginClass": "Psalm\\PhpUnitPlugin\\Plugin"
}
},
"autoload": {
"psr-4": {
"Psalm\\PhpUnitPlugin\\": ["."]
}
},
"scripts" : {
"check": [
"@cs-check",
"@analyze"
],
"analyze": "psalm",
"cs-check": "phpcs",
"cs-fix": "phpcbf"
}
}