-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
44 lines (44 loc) · 1.34 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
{
"name": "apix/log",
"description": "Minimalist, thin and fast PSR-3 compliant (multi-bucket) logger.",
"type": "library",
"keywords": ["psr", "psr-3", "psr-log", "log", "logger", "logging", "tracker", "tracking", "apix"],
"homepage": "https://github.com/frqnck/apix-log",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Franck Cassedanne",
"email": "franck@ouarz.net"
},
{
"name": "Apix Log Community",
"homepage": "https://github.com/apix/log/contributors"
}
],
"support": {
"irc": "irc://irc.freenode.org/ouarz"
},
"require": {
"php": ">=8.0",
"psr/log": "^2.0 || ^3.0"
},
"require-dev": {
"phpunit/phpunit": "^8.0|^9.0"
},
"suggest": {
"PHPMailer/apix-log-phpmailer": "Allow sending log messages via PHPMailer",
"jspalink/apix-log-pushover": "Allow sending log messages via Pushover",
"apix/log-tracker": "Allow sending log messages to logger/tracker such as Google Analytics, Dashbot, etc."
},
"autoload": {
"psr-4": { "Apix\\Log\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Apix\\Log\\tests\\": "tests/" }
},
"provide": {
"psr/log-implementation": "^1.0"
},
"minimum-stability": "dev",
"prefer-stable": true
}