-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
composer.json
43 lines (43 loc) · 949 Bytes
/
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
{
"name": "samdark/yii2-psr-log-target",
"description": "Yii 2 log target which uses PSR-3 compatible logger",
"keywords": ["yii", "extension", "log", "psr-3"],
"homepage": "https://github.com/samdark/yii2-psr-log-target",
"type": "yii2-extension",
"license": "BSD-3-Clause",
"support": {
"issues": "https://github.com/samdark/yii2-psr-log-target/issues",
"source": "https://github.com/samdark/yii2-psr-log-target"
},
"authors": [
{
"name": "Alexander Makarov",
"email": "[email protected]"
}
],
"require": {
"yiisoft/yii2": "~2.0.0",
"psr/log": "~1.0.2|~1.1.0|~3.0.0"
},
"require-dev": {
"phpunit/phpunit": "~4.4|~10.4.2"
},
"config": {
"process-timeout": 1800,
"fxp-asset": {
"enabled": false
}
},
"autoload": {
"psr-4": {
"samdark\\log\\": "src",
"samdark\\log\\tests\\": "tests"
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
]
}