-
Notifications
You must be signed in to change notification settings - Fork 20
/
composer.json
55 lines (55 loc) · 1.15 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
{
"name": "mero/yii2-monolog",
"description": "The Monolog integration for the Yii framework.",
"keywords": [
"yii2",
"monolog",
"logging",
"log"
],
"type": "yii2-extension",
"license": "MIT",
"support": {
"issues": "https://github.com/merorafael/yii2-monolog/issues",
"source": "https://github.com/merorafael/yii2-monolog"
},
"authors": [
{
"name": "Rafael Mello",
"email": "[email protected]"
}
],
"require": {
"yiisoft/yii2": "*",
"monolog/monolog": "^1.20"
},
"require-dev": {
"yiisoft/yii2-mongodb": "^2.1",
"phpunit/phpunit": "~4.5",
"phpunit/phpunit-mock-objects": "2.3.0",
"satooshi/php-coveralls": "~1.0"
},
"suggest": {
"yiisoft/yii2-mongodb": "Allow sending log messages to a MongoDB server using Yii2 connection"
},
"autoload": {
"psr-4": {
"Mero\\Monolog\\": "src/Mero/Monolog"
}
},
"autoload-dev": {
"psr-4": {
"Mero\\Monolog\\": "tests/Mero/Monolog"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.2.x-dev"
}
},
"scripts": {
"test": [
"./vendor/bin/phpunit -c phpunit.xml.dist"
]
}
}