forked from Lansoweb/response-time
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.1 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
{
"name": "los/response-time",
"description": "PHP middleware to add a Response Time header",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Leandro Silva",
"homepage": "https://sillotec.com/"
}
],
"homepage": "https://github.com/lansoweb/response-time",
"require": {
"php": "^8.1",
"psr/container": "^1.0 || ^2.0",
"psr/http-message": "^1.0 || ^2.0",
"psr/http-server-middleware": "^1.0"
},
"require-dev": {
"laminas/laminas-coding-standard": "^2.5",
"phpstan/phpstan": "^1.10",
"squizlabs/php_codesniffer": "^3.5"
},
"autoload": {
"psr-4": {
"Los\\ResponseTime\\": "src/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"sort-packages": true
},
"scripts": {
"check": [
"@cs-check",
"@phpstan"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"phpstan": "phpstan analyse"
}
}