psalm-plugin-phpunit/composer.json
Bruce Weirdan 2d8f6443d5
install, then update
This appears to be a problem with composer update (solver)
2019-02-09 09:57:59 +02:00

48 lines
1.1 KiB
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.1",
"codeception/base": "^2.5",
"weirdan/codeception-psalm-module": "dev-master"
},
"extra": {
"psalm": {
"pluginClass": "Psalm\\PhpUnitPlugin\\Plugin"
}
},
"autoload": {
"psr-4": {
"Psalm\\PhpUnitPlugin\\": ["."]
}
},
"autoload-dev": {
"psr-4": {
"Psalm\\PhpUnitPlugin\\Tests\\": ["tests/_support"]
}
},
"scripts" : {
"check": [
"@cs-check",
"@analyze",
"@test"
],
"analyze": "psalm",
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "codecept run -v"
}
}