-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 832 Bytes
/
composer.json
File metadata and controls
34 lines (34 loc) · 832 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
28
29
30
31
32
33
34
{
"name": "soflomo/log",
"description": "Small module to help with logging aware classes",
"license": "BSD-3-Clause",
"type": "library",
"keywords": [
"zf2",
"log"
],
"homepage": "https://github.com/Soflomo/Log",
"authors": [
{
"name": "Jurian Sluiman",
"email": "jurian@soflomo.com",
"homepage": "http://soflomo.com"
}
],
"require": {
"php": ">=5.3.3.",
"zendframework/zendframework": "2.*"
},
"suggest" : {
"firephp/firephp-core": "To enable logging with Fire-PHP",
"chromephp/chromephp": "To enable logging with Chrome-PHP"
},
"autoload": {
"psr-0": {
"Soflomo\\Log": "src/"
},
"classmap": [
"./Module.php"
]
}
}