-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathcomposer.json
More file actions
66 lines (66 loc) · 2.22 KB
/
composer.json
File metadata and controls
66 lines (66 loc) · 2.22 KB
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
59
60
61
62
63
64
65
66
{
"name": "chrisguitarguy/request-id-bundle",
"description": "Add request IDs to to your Symfony requests.",
"keywords": ["symfony", "request id"],
"license": "MIT",
"type": "symfony-bundle",
"require": {
"php": "^8.3",
"symfony/framework-bundle": "^6.4.22 || ^7.0.10",
"ramsey/uuid": "^4.8"
},
"require-dev": {
"phpunit/phpunit": "^12.2",
"symfony/monolog-bundle": "^3.10",
"twig/twig": "^3.9",
"symfony/twig-bundle": "^6.4.13 || ^7.0.8",
"symfony/twig-bridge": "^6.4.22 || ^7.0.8",
"symfony/browser-kit": "^6.4.19 || ^7.0.8",
"symfony/dom-crawler": "^6.4.19 || ^7.0.8",
"symfony/css-selector": "^6.4.13 || ^7.0.8",
"symfony/phpunit-bridge": "^6.4.16 || ^7.0.10",
"symfony/yaml": "^6.4.21 || ^7.0.8",
"symfony/monolog-bridge": "^6.4.13 || ^7.0.8",
"symfony/templating": "^6.4.13",
"symfony/event-dispatcher": "^6.4.13 || ^7.0.8",
"symfony/event-dispatcher-contracts": "^3.5",
"symfony/http-foundation": "^6.4.22 || ^7.0.10",
"symfony/http-kernel": "^6.4.22 || ^7.0.10",
"symfony/routing": "^6.4.22 || ^7.0.10",
"symfony/config": "^6.4.22 || ^7.0.8",
"symfony/var-exporter": "^6.4.22 || ^7.0.9",
"symfony/error-handler": "^6.4.22 || ^7.0.10",
"symfony/translation": "^6.4.22 || ^7.0.10",
"symfony/translation-contracts": "^3.5",
"symfony/filesystem": "^6.4.13 || ^7.0.9",
"symfony/cache": "^6.4.21 || ^7.0.10",
"symfony/cache-contracts": "^3.5",
"symfony/dependency-injection": "^6.4.22 || ^7.0.10"
},
"autoload": {
"psr-4": {
"Chrisguitarguy\\RequestId\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Chrisguitarguy\\RequestId\\": [
"test/unit/",
"test/acceptance/"
]
},
"files": [
"test/acceptance/app/TestKernel.php"
]
},
"conflict": {
"twig/twig": "<2.7"
},
"config": {
"allow-plugins": {
"symfony/flex": true,
"symfony/runtime": true,
"composer/package-versions-deprecated": true
}
}
}