-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
49 lines (49 loc) · 1.52 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
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "bartlett/monolog-growlhandler",
"description": "Monolog handler that send notifications to Growl on Mac OS X and Windows",
"keywords": ["log", "logging", "logger", "handler", "growl", "gntp", "notifications"],
"type": "library",
"license": "BSD-3-Clause",
"homepage": "http://php5.laurent-laville.org/growlhandler/",
"support": {
"source": "https://github.com/llaville/monolog-growlhandler",
"issues": "https://github.com/llaville/monolog-growlhandler/issues"
},
"repositories": [
{
"type": "pear",
"url": "https://pear.php.net"
}
],
"require": {
"php": ">=5.3.0",
"monolog/monolog": "~1.10",
"pear/net_growl": "~2.7"
},
"require-dev": {
"bartlett/monolog-callbackfilterhandler": "~1.0",
"bartlett/phpunit-loggertestlistener": "~1.5"
},
"suggest": {
"bartlett/monolog-callbackfilterhandler": "Advanced filtering strategies for Monolog",
"bartlett/phpunit-loggertestlistener": "Allow logging unit tests to your favorite PSR-3 logger interface"
},
"authors": [
{
"name": "Laurent Laville",
"email": "pear@laurent-laville.org",
"homepage": "https://github.com/llaville",
"role": "Lead"
}
],
"autoload": {
"psr-4": {
"Bartlett\\": "src/Bartlett"
}
},
"autoload-dev": {
"psr-4": {
"Bartlett\\Tests\\Monolog\\Handler\\": "tests/"
}
}
}