forked from infection/infection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
78 lines (78 loc) · 2.34 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
{
"name": "infection/infection",
"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"],
"type": "library",
"license": "BSD-3-Clause",
"support": {
"issues": "https://github.com/infection/infection/issues"
},
"authors": [
{
"name": "Maks Rafalko",
"email": "maks.rafalko@gmail.com",
"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": "theo.fidry@gmail.com",
"homepage": "https://twitter.com/tfidry"
},
{
"name": "Alexey Kopytko",
"email": "alexey@kopytko.com",
"homepage": "https://www.alexeykopytko.com"
}
],
"autoload": {
"psr-4": {
"Infection\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Infection\\Tests\\": "tests/"
},
"files": [
"tests/Helpers.php",
"tests/Fixtures/Autoloaded/Reflection/rv-inside-function.php"
],
"classmap": ["tests/Fixtures/Autoloaded"]
},
"config": {
"platform": {
"php": "7.0.8"
},
"sort-packages": true
},
"conflict": {
"symfony/process": "3.4.2"
},
"require": {
"php": "^7.0",
"composer/xdebug-handler": "^1.1",
"nikic/php-parser": "^4.0",
"ocramius/package-versions": "^1.2",
"padraic/phar-updater": "^1.0.4",
"pimple/pimple": "^3.2",
"sebastian/diff": "^1.4 || ^2.0 || ^3.0",
"symfony/console": "^3.2 || ^4.0",
"symfony/filesystem": "^3.2 || ^4.0",
"symfony/finder": "^3.2 || ^4.0",
"symfony/process": "^3.2 || ^4.0",
"symfony/yaml": "^3.2 || ^4.0"
},
"require-dev": {
"mockery/mockery": "^1.1",
"phpunit/phpunit": "^6"
},
"bin": ["bin/infection"]
}