-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
36 lines (36 loc) · 988 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
{
"name": "femtopixel/monolog-csvhandler",
"description": "Sends your logs to csv files",
"keywords": ["log", "csv", "logging", "psr-3"],
"homepage": "http://github.com/femtopixel/monolog-csvhandler",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Jay MOULIN",
"homepage": "http://github.com/femtopixel"
}
],
"support": {
"issues": "http://github.com/femtopixel/monolog-csvhandler/issues",
"source": "https://github.com/femtopixel/monolog-csvhandler"
},
"require": {
"php": ">=7.2.0",
"monolog/monolog": "^2.0",
"psr/log": "~1.0",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^8.0"
},
"autoload": {
"psr-4": {"FemtoPixel\\Monolog\\": "src/Monolog"}
},
"autoload-dev": {
"psr-4": {"FemtoPixel\\Monolog\\": "tests/Monolog"}
},
"scripts": {
"phpunit": "phpunit"
}
}