-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathcomposer.json
More file actions
27 lines (27 loc) · 759 Bytes
/
composer.json
File metadata and controls
27 lines (27 loc) · 759 Bytes
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
{
"name": "analog/analog",
"type": "library",
"description": "Fast, flexible, easy PSR-3-compatible PHP logging package with dozens of handlers.",
"keywords": ["log", "logs", "logging", "logger", "error", "errors", "debug", "debugging", "alerts", "monitor", "monitoring", "syslog", "gelf", "amon", "psr-3", "psr3", "stderr", "console", "firephp", "chrome-logger", "apprise"],
"homepage": "https://github.com/jbroadway/analog",
"license": "MIT",
"authors": [
{
"name": "Johnny Broadway",
"email": "johnny@johnnybroadway.com",
"homepage": "http://www.johnnybroadway.com/"
}
],
"require": {
"psr/log": "^3.0",
"php": ">=7.2"
},
"require-dev": {
"phpunit/phpunit": "^8.5"
},
"autoload": {
"psr-0": {
"Analog": "lib/"
}
}
}