forked from FrDeamon/logger-extra-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·48 lines (48 loc) · 1.34 KB
/
composer.json
File metadata and controls
executable file
·48 lines (48 loc) · 1.34 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
{
"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": ">=7.2",
"symfony/security-core": "^5.0",
"symfony/dependency-injection": "^5.0",
"symfony/monolog-bridge": "^5.0",
"symfony/http-kernel": "^5.0",
"symfony/http-foundation": "^5.0",
"symfony/config": "^5.0"
},
"require-dev": {
"symfony/phpunit-bridge": "^5.0"
},
"autoload": {
"psr-4": {
"Deamon\\LoggerExtraBundle\\": ""
}
},
"extra": {
"branch-alias": {
"dev-master": "5.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"
}
}