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": {
|
2019-02-14 12:45:18 +01:00
|
|
|
"phpunit/phpunit": "^6.0 || ^7.0 || ^8.0",
|
2019-11-17 03:35:50 +01:00
|
|
|
"vimeo/psalm": "^3.6.2 || dev-master",
|
2019-02-10 07:19:06 +01:00
|
|
|
"composer/semver": "^1.4",
|
2019-05-20 19:53:52 +02:00
|
|
|
"ocramius/package-versions": "^1.3"
|
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",
|
2019-11-17 03:51:11 +01:00
|
|
|
"weirdan/codeception-psalm-module": "^0.2.2"
|
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": {
|
2019-02-17 07:28:22 +01:00
|
|
|
"Psalm\\PhpUnitPlugin\\": ["."],
|
2019-02-19 21:58:56 +01:00
|
|
|
"Psalm\\PhpUnitPlugin\\Hooks\\": ["hooks"],
|
|
|
|
"Psalm\\PhpUnitPlugin\\Exception\\" : ["Exception"]
|
2018-11-14 06:36:33 +01:00
|
|
|
}
|
|
|
|
},
|
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
|
|
|
}
|
|
|
|
}
|