-
Notifications
You must be signed in to change notification settings - Fork 14
/
composer.json
42 lines (42 loc) · 1.02 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
{
"name": "qandidate/stack-request-id",
"description": "Middleware for adding request id to Symfony Request.",
"license": "MIT",
"require": {
"symfony/http-kernel": "^5.1.5",
"symfony/http-foundation": "^5.0.7",
"ramsey/uuid": "^4.0"
},
"authors": [
{
"name": "Alexander",
"email": "[email protected]"
},
{
"name": "Fritsjan",
"email": "[email protected]"
},
{
"name": "Qandidate.com",
"homepage": "http://labs.qandidate.com/"
}
],
"suggest": {
"symfony/monolog-bundle": "For registering the MonologProcessor"
},
"autoload": {
"psr-0": {
"Qandidate\\Stack": "src/"
}
},
"autoload-dev": {
"psr-0": {
"Qandidate\\Stack": "test/"
}
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"broadway/coding-standard": "^1.2",
"phpstan/phpstan": "^1.0"
}
}