-
Notifications
You must be signed in to change notification settings - Fork 33
/
composer.json
executable file
·63 lines (63 loc) · 1.57 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "psalm/plugin-phpunit",
"description": "Psalm plugin for PHPUnit",
"type": "psalm-plugin",
"license": "MIT",
"authors": [
{
"name": "Matt Brown",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4 || ^8.0",
"ext-simplexml": "*",
"composer/semver": "^1.4 || ^2.0 || ^3.0",
"composer/package-versions-deprecated": "^1.10",
"vimeo/psalm": "dev-master || ^5@beta || ^5.0"
},
"conflict": {
"phpunit/phpunit": "<7.5"
},
"require-dev": {
"php": "^7.3 || ^8.0",
"codeception/codeception": "^4.0.3",
"phpunit/phpunit": "^7.5 || ^8.0 || ^9.0",
"squizlabs/php_codesniffer": "^3.3.1",
"weirdan/codeception-psalm-module": "^0.11.0",
"weirdan/prophecy-shim": "^1.0 || ^2.0"
},
"extra": {
"psalm": {
"pluginClass": "Psalm\\PhpUnitPlugin\\Plugin"
}
},
"autoload": {
"psr-4": {
"Psalm\\PhpUnitPlugin\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Psalm\\PhpUnitPlugin\\Tests\\": "tests"
}
},
"scripts": {
"check": [
"@cs-check",
"@analyze",
"@test"
],
"analyze": "psalm",
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "codecept run -v"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true
}
}
}