-
Notifications
You must be signed in to change notification settings - Fork 18
/
composer.json
66 lines (66 loc) · 1.31 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "inpsyde/wonolog",
"description": "Monolog-based logging package for WordPress.",
"keywords": [
"debug",
"debugging",
"log",
"logger",
"logging",
"monolog",
"psr-3",
"wordpress"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Inpsyde GmbH",
"email": "[email protected]",
"homepage": "https://inpsyde.com",
"role": "Company"
},
{
"name": "Giuseppe Mazzapica",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/inpsyde/Wonolog/issues",
"source": "https://github.com/inpsyde/Wonolog",
"docs": "https://inpsyde.github.io/Wonolog/"
},
"minimum-stability": "stable",
"require": {
"php": ">=5.6",
"monolog/monolog": "^1.21.0"
},
"require-dev": {
"phpunit/phpunit": "^5.7.21",
"brain/monkey": "^2.2.0",
"mikey179/vfsstream": "~1.6.4"
},
"autoload": {
"psr-4": {
"Inpsyde\\Wonolog\\": "src"
},
"files": [
"inc/bootstrap.php"
]
},
"autoload-dev": {
"psr-4": {
"Inpsyde\\Wonolog\\Tests\\": "tests/src"
}
},
"config": {
"optimize-autoloader": true
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev",
"dev-2.x": "2.x-dev"
}
}
}