mirror of
https://github.com/Seldaek/monolog.git
synced 2025-02-24 15:02:28 +01:00
The easier it is for people to contribute, the better. Relying on a global install of PHPUnit via PEAR doesn't sit well with some developers. As other dev dependencies are installed via composer, why not add PHPUnit itself to the list?
41 lines
1.2 KiB
JSON
41 lines
1.2 KiB
JSON
{
|
|
"name": "monolog/monolog",
|
|
"description": "Sends your logs to files, sockets, inboxes, databases and various web services",
|
|
"keywords": ["log", "logging", "psr-3"],
|
|
"homepage": "http://github.com/Seldaek/monolog",
|
|
"type": "library",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Jordi Boggiano",
|
|
"email": "j.boggiano@seld.be",
|
|
"homepage": "http://seld.be"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": ">=5.3.0",
|
|
"psr/log": "~1.0"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "~3.7.0",
|
|
"mlehner/gelf-php": "1.0.*",
|
|
"raven/raven": "0.5.*",
|
|
"doctrine/couchdb": "dev-master"
|
|
},
|
|
"suggest": {
|
|
"mlehner/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",
|
|
"ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
|
|
"ext-mongo": "Allow sending log messages to a MongoDB server"
|
|
},
|
|
"autoload": {
|
|
"psr-0": {"Monolog": "src/"}
|
|
},
|
|
"extra": {
|
|
"branch-alias": {
|
|
"dev-master": "1.6.x-dev"
|
|
}
|
|
}
|
|
}
|