-
Notifications
You must be signed in to change notification settings - Fork 17
/
composer.json
46 lines (46 loc) · 1.31 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
{
"name": "roave/infection-static-analysis-plugin",
"description": "Static analysis on top of mutation testing - prevents escaped mutants from being invalid according to static analysis",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Marco Pivetta",
"email": "[email protected]"
}
],
"bin": [
"bin/roave-infection-static-analysis-plugin"
],
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
"composer-runtime-api": "^2.2",
"infection/infection": "0.27.11",
"sanmai/later": "^0.1.4",
"vimeo/psalm": "^4.30.0 || ^5.15"
},
"require-dev": {
"doctrine/coding-standard": "^12.0.0",
"phpunit/phpunit": "^10.5.15"
},
"autoload": {
"psr-4": {
"Roave\\InfectionStaticAnalysis\\": "src/Roave/InfectionStaticAnalysis"
}
},
"autoload-dev": {
"psr-4": {
"Roave\\InfectionStaticAnalysisTest\\": "test/unit/Roave/InfectionStaticAnalysisTest"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"infection/extension-installer": false
},
"platform": {
"php": "8.1.99"
},
"sort-packages": true
}
}