-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathcomposer.json
42 lines (42 loc) · 1.23 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
{
"name": "theorchard/monolog-cascade",
"version": "0.0.1",
"type": "library",
"description": "Monolog extension to configure multiple loggers in a blink of an eye and access them from anywhere",
"keywords": ["monolog", "cascade", "monolog extension", "monolog plugin", "monolog utils"],
"homepage": "https://github.com/theorchard/monolog-cascade",
"require": {
"php": ">=5.3.9",
"symfony/config": "~2.7.0",
"symfony/options-resolver": "~2.7.0",
"symfony/serializer": "~2.7.0",
"symfony/yaml": "~2.7.0",
"monolog/monolog": "~1.13"
},
"autoload": {
"psr-4": {
"Cascade\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Cascade\\Tests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "4.2.*",
"pdepend/pdepend": "1.1.1",
"phpmd/phpmd": "1.5.0",
"sebastian/phpcpd": "2.0.0",
"phploc/phploc": "2.0.3",
"mayflower/php-codebrowser": "1.1.1",
"squizlabs/php_codesniffer": "2.2.0",
"mikey179/vfsStream": "~1.4"
},
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "0.0.x-dev"
}
}
}