-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
33 lines (33 loc) · 1.04 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
{
"name": "silinternational/yii2-json-log-targets",
"type": "library",
"description": "A collection of Yii2 log targets that format the log message as a JSON string.",
"keywords": ["yii2", "json", "log", "target", "file", "syslog"],
"license": "MIT",
"autoload": {
"psr-4": {
"Sil\\JsonLog\\": "src/"
}
},
"require": {
"php": ">=5.6",
"yiisoft/yii2": "^2.0"
},
"suggest": {
"codemix/yii2-streamlog": "To send log to a stream such as stdout using JsonStreamTarget",
"silinternational/email-service-php-client": "To send log via email using EmailServiceTarget"
},
"require-dev": {
"behat/behat": "^3.3",
"codemix/yii2-streamlog": "^1.3",
"phpunit/phpunit": "^8.0",
"fillup/fake-bower-assets": "^2.0",
"roave/security-advisories": "dev-master",
"silinternational/email-service-php-client":"^2.0.0"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true
}
}
}