This repository has been archived by the owner on Jul 22, 2021. It is now read-only.
forked from pavelkucera/monolog-extensions-bundle
-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
74 lines (74 loc) · 1.87 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "nella/monolog-tracy-bundle",
"description": "Tracy BlueScreen handler for Monolog - Symfony bundle",
"type": "symfony-bundle",
"keywords": ["Monolog", "Tracy", "log", "logging", "blue screen", "Symfony", "bundle"],
"homepage": "https://github.com/pavelkucera/monolog-extensions-bundle",
"license": ["MIT", "GPL-2.0-only", "GPL-3.0-only"],
"authors": [
{
"name": "Pavel Kučera",
"homepage": "https://github.com/pavelkucera"
},
{
"name": "Patrik Votoček",
"email": "patrik@votocek.cz",
"homepage": "https://patrik.votocek.cz"
}
],
"support": {
"issues": "https://github.com/nella/monolog-tracy-bundle/issues",
"source": "https://github.com/nella/monolog-tracy-bundle"
},
"autoload": {
"psr-4": {
"Nella\\MonologTracyBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Nella\\MonologTracyBundle\\": "tests/"
}
},
"require": {
"php": "~7.2",
"nella/monolog-tracy": "~2.0",
"symfony/config": "^4.3|^5.0",
"symfony/dependency-injection": "^4.3|^5.0",
"symfony/expression-language": "^4.3|^5.0",
"symfony/monolog-bundle": "~3.0",
"symfony/yaml": "^4.3|^5.0"
},
"require-dev": {
"doctrine/orm": "2.6.0",
"jakub-onderka/php-console-highlighter": "0.3.2",
"jakub-onderka/php-parallel-lint": "0.9.2",
"matthiasnoback/symfony-dependency-injection-test": "2.3.0",
"nella/coding-standard": "4.2.1",
"phing/phing": "2.16.1",
"phpunit/phpunit": "6.5.6",
"twig/twig": "2.4.4"
},
"config": {
"bin-dir": "bin"
},
"conflict": {
"symfony/console": "<4.0",
"symfony/filesystem": "<4.0",
"symfony/debug": "<4.0",
"symfony/http-foundation": "<4.0",
"symfony/event-dispatcher": "<4.0",
"symfony/http-kernel": "<4.0"
},
"archive": {
"exclude": [
".gitattributes",
".gitignore",
"/build",
"/tests"
]
},
"abandoned": "mangoweb/monolog-tracy-handler",
"minimum-stability": "dev",
"prefer-stable": true
}