-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
34 lines (34 loc) · 912 Bytes
/
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
{
"name": "halleck45/mutatesting",
"description": "mutation testing tool for PHP",
"keywords": ["test", "unit", "mutation testing"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Jean-François Lépine",
"email": "[email protected]",
"homepage": "http://blog.lepine.pro"
}
],
"require": {
"php": ">=5.3",
"symfony/console": "~2.0",
"symfony/config": "~2.0",
"symfony/process": "~2.0",
"symfony/event-dispatcher": "~2.0",
"sebastian/diff": "1.0.*@dev",
"twig/twig": "1.15",
"halleck45/php-metrics": "master"
},
"require-dev": {
"phpunit/phpunit": "3.7.*@dev"
},
"minimum-stability": "dev",
"autoload": {
"psr-0": {
"Hal\\MutaTesting": "src/"
}
},
"bin": ["bin/mutatesting"]
}