forked from qandidate-labs/stack-request-id
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
41 lines (41 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
40
41
{
"name": "darsyn/stack-request-id",
"description": "Middleware for adding a request ID to Symfony Request.",
"license": "MIT",
"authors": [
{
"name": "Alexander",
"email": "[email protected]"
},
{
"name": "Fritsjan",
"email": "[email protected]"
},
{
"name": "Qandidate.com",
"homepage": "http://labs.qandidate.com/"
},
{
"name": "Zander Baldwin",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Darsyn\\Stack\\RequestId\\": "src/"
}
},
"require": {
"symfony/http-kernel": "^2.8|^3.0",
"symfony/http-foundation": "^2.8|^3.0",
"ramsey/uuid": "^3.0"
},
"autoload-dev": {
"psr-4": {
"DarsynTests\\Stack\\RequestId\\": "tests/"
}
},
"suggest": {
"symfony/monolog-bundle": "For registering the MonologProcessor"
}
}