forked from andreaskweber/php-junit-merge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1.11 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
{
"name": "99designs/php-junit-merge",
"type": "library",
"description": "PHP-Unit J-Unit XML File Merger",
"homepage": "https://github.com/andreas-weber/php-junit-merge",
"license": "MIT",
"authors": [
{
"name": "Andreas Weber",
"email": "[email protected]",
"role": "lead"
}
],
"support": {
"issues": "https://github.com/andreas-weber/php-junit-merge/issues"
},
"require": {
"php": ">=5.6",
"symfony/console": "^3.0 || ^4.0 || ^5.0",
"symfony/finder": "^3.0 || ^4.0 || ^5.0",
"theseer/fdomdocument": "1.6.*"
},
"require-dev": {
"phpunit/phpunit": "^5.0",
"phploc/phploc": "4.*",
"squizlabs/php_codesniffer": "1.5.*",
"phpmd/phpmd": "2.*",
"sebastian/phpcpd": "2.0.*"
},
"autoload": {
"classmap": [
"src/"
]
},
"config": {
"bin-dir": "vendor/bin/"
},
"bin": [
"phpjunitmerge"
],
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}