Subversion Repositories cheapmusic

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
103 - 1
{
2
    "name": "monolog/monolog",
3
    "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
4
    "keywords": ["log", "logging", "psr-3"],
5
    "homepage": "http://github.com/Seldaek/monolog",
6
    "type": "library",
7
    "license": "MIT",
8
    "authors": [
9
        {
10
            "name": "Jordi Boggiano",
11
            "email": "j.boggiano@seld.be",
12
            "homepage": "http://seld.be"
13
        }
14
    ],
15
    "require": {
16
        "php": ">=5.3.0",
17
        "psr/log": "~1.0"
18
    },
19
    "require-dev": {
20
        "phpunit/phpunit": "~4.5",
21
        "graylog2/gelf-php": "~1.0",
22
        "sentry/sentry": "^0.13",
23
        "ruflin/elastica": ">=0.90 <3.0",
24
        "doctrine/couchdb": "~1.0@dev",
25
        "aws/aws-sdk-php": "^2.4.9 || ^3.0",
26
        "php-amqplib/php-amqplib": "~2.4",
27
        "swiftmailer/swiftmailer": "~5.3",
28
        "php-console/php-console": "^3.1.3",
29
        "phpunit/phpunit-mock-objects": "2.3.0",
30
        "jakub-onderka/php-parallel-lint": "0.9"
31
    },
32
    "_": "phpunit/phpunit-mock-objects required in 2.3.0 due to https://github.com/sebastianbergmann/phpunit-mock-objects/issues/223 - needs hhvm 3.8+ on travis",
33
    "suggest": {
34
        "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
35
        "sentry/sentry": "Allow sending log messages to a Sentry server",
36
        "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
37
        "ruflin/elastica": "Allow sending log messages to an Elastic Search server",
38
        "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
39
        "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
40
        "ext-mongo": "Allow sending log messages to a MongoDB server",
41
        "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver",
42
        "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
43
        "rollbar/rollbar": "Allow sending log messages to Rollbar",
44
        "php-console/php-console": "Allow sending log messages to Google Chrome"
45
    },
46
    "autoload": {
47
        "psr-4": {"Monolog\\": "src/Monolog"}
48
    },
49
    "autoload-dev": {
50
        "psr-4": {"Monolog\\": "tests/Monolog"}
51
    },
52
    "provide": {
53
        "psr/log-implementation": "1.0.0"
54
    },
55
    "extra": {
56
        "branch-alias": {
57
            "dev-master": "2.0.x-dev"
58
        }
59
    },
60
    "scripts": {
61
        "test": [
62
            "parallel-lint . --exclude vendor",
63
            "phpunit"
64
        ]
65
    }
66
}