forked from khoinguyen/phalcon-monolog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (36 loc) · 1.07 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
{
"name": "c0de8/phalcon3-monolog",
"type": "library",
"description": "Phalcon 3 logger adapter for Monolog",
"keywords": ["log", "logger", "logging", "monolog", "phalcon", "adapter"],
"homepage": "https://github.com/c0de8/phalcon3-monolog",
"license": "MIT",
"authors": [
{
"name": "Bjoern Ellebrecht",
"email": "packagist.bjoern@ellebrecht.name",
"homepage":"http://ellebrecht.name/",
"role": "developer"
}
],
"support": {
"source": "https://github.com/C0DE8/phalcon3-monolog",
"issues": "https://github.com/C0DE8/phalcon3-monolog/issues",
"wiki": "https://github.com/C0DE8/phalcon3-monolog/wiki"
},
"require": {
"php": ">=5.5.0",
"ext-phalcon": ">= 3.0.0",
"monolog/monolog": "^1.22"
},
"require-dev": {
"phpunit/phpunit": ">=5.7.0 <6.0.0"
},
"minimum-stability": "dev",
"autoload": {
"psr-4": {"C0DE8\\": "src/C0DE8"}
},
"autoload-dev": {
"psr-4": {"C0DE8\\": "tests/C0DE8"}
}
}