-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 1.26 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
{
"name": "semaio/request-id-bundle",
"description": "This bundle adds request IDs to the request and response in your Symfony application.",
"keywords": [
"symfony",
"request",
"request id"
],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Rouven Alexander Rieker",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0",
"monolog/monolog": "^3.0",
"ramsey/uuid": "^4.7",
"symfony/framework-bundle": "^7.0"
},
"require-dev": {
"phpstan/phpstan": "^1.4",
"phpunit/phpunit": "^9.5|^10.0",
"symfony/browser-kit": "^7.0",
"symfony/css-selector": "^7.0",
"symfony/monolog-bridge": "^7.0",
"symfony/monolog-bundle": "^3.0",
"symfony/phpunit-bridge": "^7.0",
"symfony/twig-bundle": "^7.0",
"symfony/yaml": "^7.0",
"symplify/easy-coding-standard": "^12.0",
"twig/twig": "^3.0"
},
"autoload": {
"psr-4": {
"Semaio\\RequestId\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Semaio\\RequestId\\Test\\": "tests/"
}
},
"config": {
"sort-packages": true
}
}