generated from ergebnis/php-package-template
-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
71 lines (71 loc) · 1.86 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
{
"name": "ergebnis/phpunit-slow-test-detector",
"description": "Provides facilities for detecting slow tests in phpunit/phpunit.",
"license": "MIT",
"type": "library",
"keywords": [
"phpunit",
"slow",
"test",
"detector",
"extension"
],
"authors": [
{
"name": "Andreas Möller",
"email": "[email protected]",
"homepage": "https://localheinz.com"
}
],
"homepage": "https://github.com/ergebnis/phpunit-slow-test-detector",
"support": {
"issues": "https://github.com/ergebnis/phpunit-slow-test-detector/issues",
"source": "https://github.com/ergebnis/phpunit-slow-test-detector",
"security": "https://github.com/ergebnis/phpunit-slow-test-detector/blob/main/.github/SECURITY.md"
},
"require": {
"php": "~7.0.0 || ~7.1.0 || ~7.2.0 || ~7.3.0 || ~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
"phpunit/phpunit": "^6.5.0 || ^7.5.0 || ^8.5.19 || ^9.0.0 || ^10.0.0 || ^11.0.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.44.0",
"ergebnis/license": "^2.6.0",
"ergebnis/php-cs-fixer-config": "^6.37.0",
"fakerphp/faker": "~1.20.0",
"psalm/plugin-phpunit": "~0.19.0",
"psr/container": "~1.0.0",
"rector/rector": "^1.2.10",
"vimeo/psalm": "^5.26.1"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Ergebnis\\PHPUnit\\SlowTestDetector\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ergebnis\\PHPUnit\\SlowTestDetector\\Test\\": "test/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
},
"audit": {
"abandoned": "report"
},
"platform": {
"php": "7.4.33"
},
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"composer-normalize": {
"indent-size": 2,
"indent-style": "space"
}
}
}