-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
39 lines (39 loc) · 1014 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
35
36
37
38
39
{
"name": "vipsoft/code-coverage-extension",
"description": "Behat code coverage collector",
"license": "BSD-2-Clause",
"authors": [
{
"name": "Anthon Pang",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3.10",
"behat/behat": "~3.0",
"guzzle/http": "~3.0",
"symfony/config": "~2.2",
"symfony/dependency-injection": "~2.2",
"symfony/http-kernel": "~2.2",
"symfony/http-foundation": "~2.2",
"vipsoft/code-coverage-common": "2.5.*"
},
"require-dev": {
"phpunit/phpunit": "~3.7",
"mikey179/vfsstream": "~1.2"
},
"autoload": {
"psr-0": {
"VIPSoft\\CodeCoverageExtension": "src/"
}
},
"keywords": [
"bdd", "behat", "phpunit", "code", "coverage", "testing"
],
"extra": {
"branch-alias": {
"dev-master": "3.0.x-dev"
}
},
"minimum-stability": "dev"
}