-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.63 KB
/
composer.json
File metadata and controls
51 lines (51 loc) · 1.63 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
{
"name": "humbug/humbug",
"description": "Humbug is a Mutation Testing framework for PHP. Whereas Code Coverage can tell you what code your tests are executing, Mutation Testing is intended to help you judge how well your unit tests actually perform and where they could be improved.",
"keywords": ["mutation testing", "testing", "coverage", "unit testing"],
"homepage": "https://github.com/padraic/humbug",
"type": "library",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Pádraic Brady",
"email": "padraic.brady@gmail.com",
"homepage": "http://blog.astrumfutura.com"
}
],
"support": {
"issues": "https://github.com/padraic/humbug/issues"
},
"require": {
"php": ">=5.4.0",
"phpunit/phpunit": "^4.5|^5.0",
"symfony/console": "^2.6|^3.0",
"symfony/finder": "^2.6|^3.0",
"symfony/process": "^2.6|^3.0",
"symfony/event-dispatcher": "^2.6|^3.0",
"sebastian/diff": "^1.1",
"padraic/phpunit-accelerator": "^1.0.2",
"padraic/phpunit-extensions": "^1.0.0",
"padraic/phar-updater": "^1.0.0"
},
"require-dev": {
"mockery/mockery": "^0.9",
"behat/behat": "^3.0.15",
"symfony/filesystem": "^2.6|^3.0",
"mikey179/vfsStream": "^1.4"
},
"autoload": {
"psr-4": { "Humbug\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Humbug\\Test\\": "tests/" }
},
"bin": ["bin/humbug"],
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"scripts": {
"test": "phpunit"
}
}