forked from Nimut/phpunit-merger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
65 lines (65 loc) · 1.64 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
{
"name": "melhorenvio/phpunit-merger",
"description": "Merge multiple PHPUnit reports into one file",
"keywords": [
"PHPUnit",
"Coverage",
"SonarQube",
"TYPO3 CMS"
],
"homepage": "https://github.com/Nimut/phpunit-merger",
"license": [
"GPL-2.0+"
],
"authors": [
{
"name": "Nicole Cordes",
"email": "[email protected]",
"role": "Developer",
"homepage": "https://www.biz-design.biz"
},
{
"name": "Helmut Hummel",
"email": "[email protected]",
"role": "Developer",
"homepage": "https://helhum.io"
}
],
"require": {
"php": "^7.0.8 || ^8.0",
"ext-dom": "*",
"ext-json": "*",
"ext-simplexml": "*",
"phpunit/php-code-coverage": ">=5.0 <10.0",
"symfony/console": "*",
"symfony/finder": "*"
},
"require-dev": {
"phpunit/phpunit": ">=6.0 <10.0",
"symfony/filesystem": "*",
"phpspec/prophecy-phpunit": "*"
},
"scripts": {
"test": "XDEBUG_MODE=coverage .Build/bin/phpunit"
},
"suggest": {
"friendsofphp/php-cs-fixer": "Tool to automatically fix PHP coding standards issues"
},
"autoload": {
"psr-4": {
"Nimut\\PhpunitMerger\\": "src/PhpunitMerger/"
}
},
"autoload-dev": {
"psr-4": {
"Nimut\\PhpunitMerger\\Tests\\": "tests/PhpunitMerger/"
}
},
"bin": [
"bin/phpunit-merger"
],
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin"
}
}