-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
71 lines (71 loc) · 1.83 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": "teqneers/phpunit-stopwatch",
"description": "Extension to measure and analyse any part of your code in order to detect performance issues using phpunit/phpunit.",
"license": "MIT",
"type": "library",
"keywords": [
"phpunit",
"performance",
"slow",
"test",
"measure",
"stopwatch",
"time",
"extension"
],
"authors": [
{
"name": "Oliver G. Mueller",
"email": "[email protected]",
"homepage": "https://teqneers.de"
}
],
"homepage": "https://github.com/teqneers/phpunit-stopwatch",
"support": {
"issues": "https://github.com/teqneers/phpunit-stopwatch/issues",
"source": "https://github.com/teqneers/phpunit-stopwatch",
"security": "https://github.com/teqneers/phpunit-stopwatch/blob/main/.github/SECURITY.md"
},
"require": {
"php": ">=8.1.0",
"phpunit/phpunit": "^10.1.0 || ^11.0.0",
"psr/clock": "^1.0.0",
"symfony/clock": "^6.4.0 || ^7.0.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.42.0",
"ergebnis/license": "^2.0.0",
"ergebnis/php-cs-fixer-config": "^6.23.0",
"fakerphp/faker": "^1.23.1",
"psalm/plugin-phpunit": "~0.19.0",
"rector/rector": "^1.0.2",
"roave/security-advisories": "dev-master",
"scrutinizer/ocular": "dev-master",
"vimeo/psalm": "^5.23.1"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"TQ\\Testing\\Extension\\Stopwatch\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TQ\\Testing\\Extension\\Stopwatch\\Test\\": "test/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
},
"audit": {
"abandoned": "report"
},
"preferred-install": "dist",
"sort-packages": true
},
"scripts": {
"test": "phpunit --display-warnings --display-notices"
}
}