psalm-plugin-phpunit/composer.json

61 lines
1.5 KiB
JSON
Raw Permalink Normal View History

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"
}
],
2020-04-03 20:35:14 +02:00
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
2018-11-14 06:36:33 +01:00
"require": {
2020-10-26 20:18:31 +01:00
"php": "^7.1 || ^8.0",
2020-04-03 20:32:23 +02:00
"ext-simplexml": "*",
2020-08-24 20:37:29 +02:00
"composer/semver": "^1.4 || ^2.0 || ^3.0",
"composer/package-versions-deprecated": "^1.10",
2022-07-29 14:25:01 +02:00
"vimeo/psalm": "dev-master || dev-4.x || ^4.5 || ^5@beta"
2018-11-14 06:36:33 +01:00
},
2020-12-01 14:30:59 +01:00
"conflict": {
"phpunit/phpunit": "<7.5"
},
2018-11-14 06:36:33 +01:00
"require-dev": {
2020-10-26 20:18:31 +01:00
"php": "^7.3 || ^8.0",
2020-04-05 20:15:19 +02:00
"codeception/codeception": "^4.0.3",
2020-12-01 14:30:59 +01:00
"phpunit/phpunit": "^7.5 || ^8.0 || ^9.0",
2020-04-03 20:35:14 +02:00
"squizlabs/php_codesniffer": "^3.3.1",
"weirdan/codeception-psalm-module": "^0.11.0",
"weirdan/prophecy-shim": "^1.0 || ^2.0"
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\\": "src"
2018-11-14 06:36:33 +01:00
}
},
"autoload-dev": {
"psr-4": {
2020-04-03 20:27:38 +02:00
"Psalm\\PhpUnitPlugin\\Tests\\": "tests"
}
},
2020-04-03 20:35:14 +02:00
"scripts": {
2018-11-14 06:36:33 +01:00
"check": [
"@cs-check",
"@analyze",
"@test"
2018-11-14 06:36:33 +01:00
],
"analyze": "psalm",
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "codecept run -v"
2018-11-14 06:36:33 +01:00
}
}