-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
49 lines (49 loc) · 1.38 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": "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": "[email protected]"
},
{
"name": "Contributors",
"homepage": "https://github.com/FrDeamon/logger-extra-bundle/graphs/contributors"
}
],
"keywords": [
"Log"
],
"require": {
"php": ">=8.0.2",
"symfony/security-core": "^6.0",
"symfony/dependency-injection": "^6.0",
"symfony/monolog-bridge": "^6.0",
"monolog/monolog": "^3.0",
"symfony/http-kernel": "^6.0",
"symfony/http-foundation": "^6.0",
"symfony/config": "^6.0"
},
"require-dev": {
"symfony/phpunit-bridge": "^6.0"
},
"autoload": {
"psr-4": {
"Deamon\\LoggerExtraBundle\\": ""
}
},
"extra": {
"branch-alias": {
"dev-master": "6.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"
}
}