forked from infection/infection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
102 lines (102 loc) · 2.91 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "infection/infection",
"type": "library",
"description": "Infection is a Mutation Testing framework for PHP. The mutation adequacy score can be used to measure the effectiveness of a test set in terms of its ability to detect faults.",
"keywords": [
"mutation testing",
"mutation framework",
"testing",
"coverage",
"unit testing",
"mutant"
],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Maks Rafalko",
"email": "[email protected]",
"homepage": "https://twitter.com/maks_rafalko"
},
{
"name": "Oleg Zhulnev",
"homepage": "https://github.com/sidz"
},
{
"name": "Gert de Pagter",
"homepage": "https://github.com/BackEndTea"
},
{
"name": "Théo FIDRY",
"email": "[email protected]",
"homepage": "https://twitter.com/tfidry"
},
{
"name": "Alexey Kopytko",
"email": "[email protected]",
"homepage": "https://www.alexeykopytko.com"
},
{
"name": "Andreas Möller",
"email": "[email protected]",
"homepage": "https://localheinz.com"
}
],
"require": {
"php": "^7.2.9",
"ext-dom": "*",
"ext-json": "*",
"ext-libxml": "*",
"composer/xdebug-handler": "^1.3.3",
"justinrainbow/json-schema": "^5.2",
"nikic/php-parser": "^4.2.1",
"ocramius/package-versions": "^1.2",
"pimple/pimple": "^3.2",
"sebastian/diff": "^3.0.2",
"symfony/console": "^3.4.29 || ^4.0",
"symfony/filesystem": "^3.4.29 || ^4.0",
"symfony/finder": "^3.4.29 || ^4.0",
"symfony/process": "^3.4.29 || ^4.0",
"symfony/yaml": "^3.4.29 || ^4.0",
"thecodingmachine/safe": "^0.1.16",
"webmozart/assert": "^1.3",
"webmozart/path-util": "^2.3"
},
"conflict": {
"symfony/console": "=4.1.5"
},
"require-dev": {
"helmich/phpunit-json-assert": "^3.0",
"phpunit/phpunit": "^8.2.5",
"symfony/phpunit-bridge": "^4.3.4"
},
"config": {
"platform": {
"php": "7.2.9"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"Infection\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Infection\\Tests\\": "tests/phpunit"
},
"classmap": [
"tests/phpunit/Fixtures/Autoloaded",
"tests/phpunit/Fixtures/CodeSamples"
],
"files": [
"tests/phpunit/Helpers.php",
"tests/phpunit/Fixtures/Autoloaded/Reflection/rv-inside-function.php"
]
},
"bin": [
"bin/infection"
],
"support": {
"issues": "https://github.com/infection/infection/issues"
}
}