2018-11-14 06:36:33 +01:00
|
|
|
{
|
2018-11-14 17:01:45 +01:00
|
|
|
"name": "psalm/plugin-phpunit",
|
2018-11-14 06:36:33 +01:00
|
|
|
"description": "Psalm plugin for PHPUnit",
|
|
|
|
"type": "psalm-plugin",
|
|
|
|
"license": "MIT",
|
|
|
|
"authors": [
|
|
|
|
{
|
|
|
|
"name": "Matt Brown",
|
|
|
|
"email": "github@muglug.com"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"require": {
|
2018-11-19 04:18:42 +01:00
|
|
|
"phpunit/phpunit": "^5.0 || ^6.0 || ^7.0",
|
2019-02-10 07:19:06 +01:00
|
|
|
"vimeo/psalm": "^3.0 || dev-master",
|
|
|
|
"composer/semver": "^1.4",
|
|
|
|
"muglug/package-versions-56": "^1.2"
|
2018-11-14 06:36:33 +01:00
|
|
|
},
|
|
|
|
"require-dev": {
|
2019-02-09 07:59:23 +01:00
|
|
|
"squizlabs/php_codesniffer": "^3.3.1",
|
|
|
|
"codeception/base": "^2.5",
|
|
|
|
"weirdan/codeception-psalm-module": "dev-master"
|
2018-11-14 06:36:33 +01:00
|
|
|
},
|
|
|
|
"extra": {
|
2018-11-14 15:23:26 +01:00
|
|
|
"psalm": {
|
|
|
|
"pluginClass": "Psalm\\PhpUnitPlugin\\Plugin"
|
|
|
|
}
|
2018-11-14 06:36:33 +01:00
|
|
|
},
|
|
|
|
"autoload": {
|
|
|
|
"psr-4": {
|
|
|
|
"Psalm\\PhpUnitPlugin\\": ["."]
|
|
|
|
}
|
|
|
|
},
|
2019-02-09 07:59:23 +01:00
|
|
|
"autoload-dev": {
|
|
|
|
"psr-4": {
|
|
|
|
"Psalm\\PhpUnitPlugin\\Tests\\": ["tests/_support"]
|
|
|
|
}
|
|
|
|
},
|
2018-11-14 06:36:33 +01:00
|
|
|
"scripts" : {
|
|
|
|
"check": [
|
|
|
|
"@cs-check",
|
2019-02-09 07:59:23 +01:00
|
|
|
"@analyze",
|
2019-02-09 08:51:59 +01:00
|
|
|
"@test"
|
2018-11-14 06:36:33 +01:00
|
|
|
],
|
|
|
|
"analyze": "psalm",
|
|
|
|
"cs-check": "phpcs",
|
2019-02-09 07:59:23 +01:00
|
|
|
"cs-fix": "phpcbf",
|
2019-02-09 08:51:59 +01:00
|
|
|
"test": "codecept run -v"
|
2018-11-14 06:36:33 +01:00
|
|
|
}
|
|
|
|
}
|