-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.24 KB
/
composer.json
File metadata and controls
48 lines (48 loc) · 1.24 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
{
"name": "fetzi/server-timing",
"description": "server-timing is a package that contains a middlware for adding Server-Timing information to your responses",
"authors": [
{
"name": "Johannes Pichler",
"email": "admin@fetzi.dev",
"homepage": "https://fetzi.dev",
"role": "Maintainer"
}
],
"license": "MIT",
"homepage": "https://github.com/fetzi/server-timing",
"require": {
"php": "^8.0",
"illuminate/support": "^12.6",
"psr/http-server-middleware": "^1.0"
},
"require-dev": {
"phpspec/prophecy": "^1.20",
"phpunit/phpunit": "^8.5",
"squizlabs/php_codesniffer": "^3.5"
},
"autoload": {
"psr-4": {
"Fetzi\\ServerTiming\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Fetzi\\ServerTiming\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"lint": "vendor/bin/phpcs --standard=PSR2,PSR12 src/"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Fetzi\\ServerTiming\\Providers\\ServerTimingProvider"
]
}
}
}