mirror of
https://github.com/danog/psalm-plugin-phpunit.git
synced 2024-11-26 20:15:08 +01:00
38 lines
804 B
JSON
Executable File
38 lines
804 B
JSON
Executable File
{
|
|
"name": "psalm/phpunit-plugin",
|
|
"description": "Psalm plugin for PHPUnit",
|
|
"type": "psalm-plugin",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Matt Brown",
|
|
"email": "github@muglug.com"
|
|
}
|
|
],
|
|
"require": {
|
|
"vimeo/psalm": "dev-master"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^7.2",
|
|
"squizlabs/php_codesniffer": "^3.3"
|
|
},
|
|
"extra": {
|
|
"pluginClass": "Psalm\\PhpUnitPlugin\\Plugin"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Psalm\\PhpUnitPlugin\\": ["."]
|
|
}
|
|
},
|
|
"scripts" : {
|
|
"check": [
|
|
"@cs-check",
|
|
"@test",
|
|
"@analyze"
|
|
],
|
|
"analyze": "psalm",
|
|
"cs-check": "phpcs",
|
|
"cs-fix": "phpcbf"
|
|
}
|
|
}
|