-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 1.01 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
{
"name": "noccylabs/logpipe",
"description": "Interactive logging via named pipes and sockets",
"license": "GPL-3.0",
"keywords": [ "logging", "debugging" ],
"require": {
"php": ">=5.4.0",
"symfony/console": "~2.6|~3.0",
"psr/log": "1.*",
"symfony/yaml": "~2.6|~3.0",
"symfony/dependency-injection": "~2.6|~3.0",
"symfony/event-dispatcher": "~2.6|~3.0",
"symfony/expression-language": "~2.6|~3.0",
"symfony/var-dumper": "~2.6|~3.0"
},
"require-dev": {
"monolog/monolog": "~1.0"
},
"suggest": {
"ext-msgpack": "For using the Msgpack serializer",
"ext-mongo": "For using the Bson serializer"
},
"autoload": {
"files": [ "lib/globals.php" ],
"psr-4": { "NoccyLabs\\LogPipe\\": "lib/", "\\": "tests/src/" }
},
"authors": [
{
"name": "Christopher Vagnetoft",
"email": "[email protected]"
}
],
"bin": [
"bin/logpipe"
]
}