This repository was archived by the owner on Mar 2, 2019. It is now read-only.
forked from Seldaek/monolog
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.61 KB
/
Copy pathcomposer.json
File metadata and controls
48 lines (48 loc) · 1.61 KB
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
38
39
40
41
42
43
44
45
46
47
48
{
"name": "ehough/epilog",
"description": "Fork of seldaek/monolog compatible with PHP 5.2+",
"homepage": "https://github.com/ehough/epilog",
"license": "MIT",
"authors": [
{
"name": "Jordi Boggiano",
"email": "j.boggiano@seld.be",
"homepage": "http://seld.be"
},
{
"name": "Eric Hough",
"email": "eric@tubepress.com",
"homepage": "https://github.com/ehough"
}
],
"require": {
"php": ">=5.2.0"
},
"require-dev": {
"phpunit/phpunit": "~3.7.0",
"graylog2/gelf-php": "~1.0",
"raven/raven": "~0.5",
"ruflin/elastica": "0.90.*",
"doctrine/couchdb": "~1.0@dev",
"aws/aws-sdk-php": "~2.4, >2.4.8",
"ehough/pulsar": "~2.3"
},
"autoload": {
"psr-0": {"ehough_epilog": "src/main/php"}
},
"suggest": {
"graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
"raven/raven": "Allow sending log messages to a Sentry server",
"doctrine/couchdb": "Allow sending log messages to a CouchDB server",
"ruflin/elastica": "Allow sending log messages to an Elastic Search server",
"ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
"ext-mongo": "Allow sending log messages to a MongoDB server",
"aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
"rollbar/rollbar": "Allow sending log messages to Rollbar"
},
"extra": {
"branch-alias": {
"dev-master": "1.10.x-dev"
}
}
}