forked from Lansoweb/request-id
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
58 lines (58 loc) · 1.54 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
{
"name": "zooxsmart/request-id",
"description": "PHP middleware to add a Request ID header",
"type": "library",
"homepage": "https://github.com/zooxsmart/request-id",
"authors": [
{
"name": "Leandro Silva",
"email": "[email protected]"
}
],
"license": "MIT",
"require": {
"php": "^8.2",
"psr/http-message": "^1.0",
"psr/http-server-middleware": "^1.0",
"ramsey/uuid": "^4.1",
"psr/container": "^1.0 || ^2.0"
},
"require-dev": {
"doctrine/coding-standard": "^12.0",
"laminas/laminas-diactoros": "^3.2",
"phpstan/phpstan": "^1.10.39",
"phpunit/phpunit": "^10.4.2",
"squizlabs/php_codesniffer": "^3.7.2",
"vimeo/psalm": "^5.15"
},
"autoload": {
"psr-4": {
"Los\\RequestId\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Los\\RequestIdTest\\": "tests/"
}
},
"scripts": {
"check": [
"@cs-check",
"@phpstan",
"@psalm",
"@test"
],
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml",
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"phpstan": "phpstan analyse -l 4 src",
"psalm": "psalm --show-info=true"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}