-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.41 KB
/
composer.json
File metadata and controls
50 lines (50 loc) · 1.41 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
{
"name": "deamon/logger-extra-bundle",
"license": "MIT",
"description": "This bundle is here to add some extra info about the context in your logs.",
"type": "symfony-bundle",
"authors": [
{
"name": "Bastien DURAND",
"email": "bdurand-dev@outlook.com"
},
{
"name": "Contributors",
"homepage": "https://github.com/FrDeamon/logger-extra-bundle/graphs/contributors"
}
],
"keywords": [
"Log"
],
"require": {
"php": ">=8.2",
"symfony/security-core": "^7.0",
"symfony/dependency-injection": "^7.0",
"symfony/monolog-bridge": "^7.0",
"monolog/monolog": "^3.0",
"symfony/http-kernel": "^7.0",
"symfony/http-foundation": "^7.0",
"symfony/config": "^7.0",
"symfony/yaml": "^7.0"
},
"require-dev": {
"symfony/phpunit-bridge": "^7.0"
},
"autoload": {
"psr-4": {
"Deamon\\LoggerExtraBundle\\": ""
}
},
"extra": {
"branch-alias": {
"dev-master": "7.0.x-dev"
}
},
"suggest": {
"graylog2/gelf-php": "For the possibility to send monolog messages to a graylog server such as ELK"
},
"support": {
"issues": "https://github.com/FrDeamon/logger-extra-bundle/issues",
"source": "https://github.com/FrDeamon/logger-extra-bundle"
}
}