-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
75 lines (75 loc) · 2.27 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
66
67
68
69
70
71
72
73
74
75
{
"type": "project",
"name": "sweetchuck/junit-merger-cli",
"description": "CLI tool to merge two or more JUnit XML files into one.",
"keywords": [
"junit"
],
"authors": [
{
"name": "Andor",
"role": "Maintainer",
"homepage": "https://github.com/Sweetchuck"
}
],
"homepage": "https://github.com/Sweetchuck/junit-merger-cli",
"support": {
"source": "https://github.com/Sweetchuck/junit-merger-cli",
"issues": "https://github.com/Sweetchuck/junit-merger-cli/issues"
},
"license": "GPL-3.0-or-later",
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"preferred-install": "dist",
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"sweetchuck/git-hooks": true
}
},
"repositories": {},
"require": {
"php": ">=7.4",
"ext-json": "*",
"psr/log": "^1.1",
"sweetchuck/junit-merger": "1.x-dev",
"symfony/console": "^5.1 || ^6.0",
"symfony/dependency-injection": "^5.3 || ^6.0"
},
"require-dev": {
"codeception/codeception": "^4.1",
"codeception/module-asserts": "^1.3",
"codeception/module-cli": "^1.1",
"consolidation/robo": "^3.0",
"mikey179/vfsstream": "^1.6",
"nuvoleweb/robo-config": "^2.0",
"squizlabs/php_codesniffer": "^3.6",
"sweetchuck/git-hooks": "2.x-dev",
"sweetchuck/robo-composer": "2.x-dev",
"sweetchuck/robo-git": "2.x-dev",
"sweetchuck/robo-phpcs": "2.x-dev",
"sweetchuck/utils": "1.x-dev",
"symfony/error-handler": "^5.3 || ^6.0",
"symfony/finder": "^5.3 || ^6.0",
"symfony/yaml": "^5.4 || ^6.0"
},
"bin": [
"./bin/junit-merger"
],
"autoload": {
"psr-4": {
"Sweetchuck\\JunitMergerCli\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Sweetchuck\\JunitMergerCli\\Test\\": "tests/_support/",
"Sweetchuck\\JunitMergerCli\\Tests\\Acceptance\\": "tests/acceptance/",
"Sweetchuck\\JunitMergerCli\\Tests\\Unit\\": "tests/unit/"
}
},
"scripts": {},
"scripts-descriptions": {},
"extra": {}
}