-
Notifications
You must be signed in to change notification settings - Fork 28
/
composer.json
63 lines (63 loc) · 1.62 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
{
"name": "nimut/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": "typo3@cordes.co",
"role": "Developer",
"homepage": "https://www.biz-design.biz"
},
{
"name": "Helmut Hummel",
"email": "info@helhum.io",
"role": "Developer",
"homepage": "https://helhum.io"
}
],
"require": {
"php": "^8.0",
"ext-dom": "*",
"ext-json": "*",
"ext-simplexml": "*",
"phpunit/php-code-coverage": "^9.0 || ^10.0",
"symfony/console": ">=2.7 <8.0",
"symfony/finder": ">=2.7 <8.0"
},
"require-dev": {
"phpunit/phpunit": "^9.3 || ^10.0",
"symfony/filesystem": ">=2.7 <8.0",
"phpspec/prophecy": "^1.0",
"php-parallel-lint/php-parallel-lint": "^1.4"
},
"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"
}
}