-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
73 lines (73 loc) · 2.07 KB
/
composer.json
File metadata and controls
73 lines (73 loc) · 2.07 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
{
"name": "ergebnis/phpunit-agent-reporter",
"description": "Provides an extension for reporting phpunit/phpunit test execution details to agents.",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Andreas Möller",
"email": "am@localheinz.com",
"homepage": "https://localheinz.com"
}
],
"homepage": "https://github.com/ergebnis/phpunit-agent-reporter",
"support": {
"issues": "https://github.com/ergebnis/phpunit-agent-reporter/issues",
"source": "https://github.com/ergebnis/phpunit-agent-reporter",
"security": "https://github.com/ergebnis/phpunit-agent-reporter/blob/main/.github/SECURITY.md"
},
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0",
"ergebnis/agent-detector": "^1.0.1",
"phpunit/phpunit": "^10.0.0 || ^11.0.0 || ^12.0.0 || ^13.0.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.51.0",
"ergebnis/license": "^2.7.0",
"ergebnis/php-cs-fixer-config": "^6.61.1",
"ergebnis/phpstan-rules": "^2.13.1",
"ergebnis/rector-rules": "^1.18.1",
"fakerphp/faker": "^1.24.1",
"infection/infection": "~0.27.11",
"justinrainbow/json-schema": "^5.0.0 || ^6.0.0",
"phpstan/phpstan": "^2.1.46",
"phpstan/phpstan-deprecation-rules": "^2.0.4",
"phpstan/phpstan-phpunit": "^2.0.16",
"phpstan/phpstan-strict-rules": "^2.0.10",
"rector/rector": "^2.4.2"
},
"autoload": {
"psr-4": {
"Ergebnis\\PHPUnit\\AgentReporter\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ergebnis\\PHPUnit\\AgentReporter\\Test\\": "test/"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"ergebnis/composer-normalize": true,
"infection/extension-installer": true
},
"audit": {
"abandoned": "report"
},
"platform": {
"php": "8.1.26"
},
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-main": "1.0-dev"
},
"composer-normalize": {
"indent-size": 2,
"indent-style": "space"
}
}
}