-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·61 lines (61 loc) · 1.46 KB
/
composer.json
File metadata and controls
executable file
·61 lines (61 loc) · 1.46 KB
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
{
"name": "psalm/plugin-phpunit",
"description": "Psalm plugin for PHPUnit",
"type": "psalm-plugin",
"license": "MIT",
"minimum-stability": "dev",
"authors": [
{
"name": "Matt Brown",
"email": "github@muglug.com"
}
],
"require": {
"php": ">=8.1",
"ext-simplexml": "*",
"psalm/psalm-plugin-api": "^0.1"
},
"conflict": {
"phpunit/phpunit": "<8.5.1",
"phpspec/prophecy": "<1.20.0",
"phpspec/prophecy-phpunit": "<2.3.0"
},
"require-dev": {
"php": "^7.3 || ^8.0",
"phpunit/phpunit": "^10.0 || ^11.0 || ^12.0",
"squizlabs/php_codesniffer": "^3.3.1",
"weirdan/prophecy-shim": "^1.0 || ^2.0",
"vimeo/psalm": "dev-master || ^6.10.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"
],
"analyze": "psalm",
"cs-check": "phpcs",
"cs-fix": "phpcbf"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true
}
}
}