-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
30 lines (30 loc) · 981 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
{
"name": "productsupcom/flexilog",
"type": "library",
"description": "Flexible PSR-3 Compatible Logger",
"license": "MIT",
"require": {
"php": ">=5.6.0",
"psr/log": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^5.4",
"raulfraile/ladybug": "^1.0",
"victorjonsson/markdowndocs": "dev-master",
"escapestudios/symfony2-coding-standard": "~2.0"
},
"autoload": {
"psr-4": {"Productsup\\Flexilog\\": "lib/"}
},
"suggest": {
"graylog2/gelf-php": "Required for GelfHandler, if you want to write to Graylog",
"league/climate": "Required for ShellHandler, if you want to write to the Shell using multi-color",
"maknz/slack": "Required for SlackHandler, if you want to write to a Slack channel"
},
"repositories": [
{
"type": "git",
"url": "https://github.com/vrtxf/PHP-Markdown-Documentation-Generator.git"
}
]
}