-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
39 lines (39 loc) · 1.01 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
{
"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": "[email protected]",
"homepage": "https://fetzi.dev",
"role": "Maintainer"
}
],
"license": "MIT",
"homepage": "https://github.com/fetzi/server-timing",
"require": {
"php": "^7.2",
"psr/http-server-middleware": "^1.0"
},
"require-dev": {
"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
}
}