forked from theorchard/monolog-cascade
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
68 lines (68 loc) · 1.95 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
{
"name": "nanigans/monolog-cascade",
"license": "MIT",
"type": "library",
"description": "Monolog extension to configure multiple loggers in the blink of an eye and access them from anywhere",
"keywords": ["monolog", "cascade", "monolog extension", "monolog plugin", "monolog utils", "logger", "log"],
"authors": [
{
"name": "David Johnson",
"email": "djohnson@nanigans.com",
"role": "Developer"
},
{
"name": "Nitesh Gupta",
"email": "ngupta@nanigans.com",
"role": "Developer"
},
{
"name": "Raphaël Antonmattei",
"email": "rantonmattei@theorchard.com",
"homepage": "https://github.com/rantonmattei",
"role": "Original Author"
}
],
"minimum-stability": "dev",
"homepage": "https://github.com/theorchard/monolog-cascade",
"repositories": [
{
"url": "https://github.com/Nanigans/monolog.git",
"type": "git"
}
],
"require": {
"php": ">=5.3.3",
"symfony/config": "2.6.13",
"symfony/console": "2.6.13",
"symfony/event-dispatcher": "2.6.13",
"symfony/finder": "2.6.13",
"symfony/filesystem": "2.6.13",
"symfony/options-resolver": "2.6.13",
"symfony/stopwatch": "2.6.13",
"symfony/yaml": "2.6.13",
"nanigans/monolog": "1.x-dev"
},
"autoload": {
"psr-4": {
"Cascade\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Cascade\\Tests\\": "tests/"
}
},
"require-dev": {
"mikey179/vfsStream": "~1.6",
"phpunit/phpcov": "~2.0",
"phpunit/phpunit": "~4.8",
"satooshi/php-coveralls": "~1.0",
"squizlabs/php_codesniffer": "~2.5"
},
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "0.4.x-dev"
}
}
}