-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
28 lines (27 loc) · 740 Bytes
/
composer.json
File metadata and controls
28 lines (27 loc) · 740 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":"wa72/simplelogger",
"description":"Wa72SimpleLogger is a collection of very simple loggers implementing \\Psr\\Log\\LoggerInterface (PSR-3)",
"keywords":["log", "logger", "PSR-3"],
"homepage":"http://github.com/wasinger/simplelogger",
"type":"library",
"license":"MIT",
"authors":[
{
"name":"Christoph Singer",
"email":"singer@webagentur72.de",
"homepage":"http://www.webagentur72.de"
}
],
"require":{
"php":">=8.0",
"psr/log":"^1 || ^2 || ^3"
},
"provide": {
"psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
},
"autoload":{
"psr-0":{
"Wa72\\SimpleLogger":"."
}
}
}