-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
76 lines (76 loc) · 2.14 KB
/
composer.json
File metadata and controls
76 lines (76 loc) · 2.14 KB
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
76
{
"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": {
"allow-plugins": {
"phpstan/extension-installer": true,
"sweetchuck/git-hooks": true
},
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"require": {
"php": ">=8.4",
"ext-json": "*",
"psr/log": "^3.0",
"sweetchuck/junit-merger": "2.x-dev",
"symfony/console": "^7.0",
"symfony/dependency-injection": "^7.0"
},
"require-dev": {
"ext-dom": "*",
"mikey179/vfsstream": "^1.6",
"nuvoleweb/robo-config": "^3.0",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-phpunit": "^2.0",
"phpunit/phpunit": "^11.0",
"squizlabs/php_codesniffer": "^4.0",
"sweetchuck/git-hooks": "2.x-dev",
"sweetchuck/robo-composer": "4.x-dev",
"sweetchuck/robo-git": "4.x-dev",
"sweetchuck/robo-phpcs": "4.x-dev",
"sweetchuck/robo-phpstan": "3.x-dev",
"symfony/error-handler": "7.0",
"symfony/finder": "^7.0",
"symfony/yaml": "^7.0"
},
"bin": [
"./bin/junit-merger"
],
"autoload": {
"psr-4": {
"Sweetchuck\\JunitMergerCli\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Sweetchuck\\JunitMergerCli\\Tests\\": "tests/src/"
},
"classmap": [
"RoboFile.php"
]
}
}