-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
67 lines (67 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
{
"name": "kanti/server-timing",
"description": "Show timings of Database and HTTP Calls (send them to Sentry)",
"license": "GPL-2.0-or-later",
"type": "typo3-cms-extension",
"authors": [
{
"name": "Matthias Vogel",
"email": "[email protected]"
}
],
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
"composer-runtime-api": "^2.0.0",
"typo3/cms-core": "^11.0 || ^12.0 || ^13.0",
"typo3/cms-extbase": "^11.0 || ^12.0 || ^13.0"
},
"require-dev": {
"infection/infection": "^0.26.13 || ^0.27.11",
"phpstan/extension-installer": "^1.1",
"phpunit/phpunit": "^10 || ^11",
"pluswerk/grumphp-config": "^7",
"saschaegerer/phpstan-typo3": "^1.10.1",
"sentry/sdk": "^3.5",
"ssch/typo3-rector": "^2.6.4",
"typo3/cms-adminpanel": "^11.0 || ^12.0 || ^13.0"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Kanti\\ServerTiming\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Kanti\\ServerTiming\\Tests\\": "Tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"infection/extension-installer": true,
"php-http/discovery": false,
"phpro/grumphp": true,
"phpstan/extension-installer": true,
"pluswerk/grumphp-config": true,
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
},
"extra": {
"typo3/cms": {
"Package": {
"serviceProvider": "Kanti\\ServerTiming\\ServiceProvider"
},
"extension-key": "server_timing"
}
},
"scripts": {
"infection": "infection --only-covered",
"test": "@php -d pcov.enabled=1 ./vendor/bin/phpunit --display-warnings",
"test:watch": [
"Composer\\Config::disableProcessTimeout",
"@php -d pcov.enabled=1 ./vendor/bin/phpunit-watcher watch < /dev/tty"
]
}
}