summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: 2acbbd9d84160632157a728fc935033d61358a8d (plain)
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": "PHP logging class that can be extended via closures. Includes several pre-built handlers including file, mail, syslog, HTTP post, and MongoDB.",
	"keywords": ["log", "logging", "logger", "syslog", "error", "debug", "debugging", "alerts"],
	"homepage": "https://github.com/jbroadway/analog",
	"license": "MIT",
	"authors": [
		{
			"name": "Johnny Broadway",
			"email": "johnny@johnnybroadway.com",
			"homepage": "http://www.johnnybroadway.com/"
		}
	],
	"require": {
		"psr/log": "1.*",
		"php": ">=5.3.2"
	},
	"require-dev": {
		"phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5"
	},
	"autoload": {
		"psr-0": {
			"Analog": "lib/"
		}
	}
}