-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
executable file
·45 lines (45 loc) · 1005 Bytes
/
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
{
"name": "mhcg/monolog-wp-cli",
"description": "Extension for Monolog to support outputting to WP-CLI (The WordPress command line interface) when running wp command lines.",
"keywords": [
"log",
"logging",
"psr-3",
"wp-cli"
],
"license": "MIT",
"authors": [
{
"name": "Mark Heydon",
"email": "[email protected]",
"role": "Developer"
}
],
"type": "library",
"require": {
"php": "^7.3 | ^7.4 | ^8.0",
"monolog/monolog": "^2.5"
},
"require-dev": {
"wp-cli/wp-cli": "^2.0",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"MHCG\\Monolog\\": "src/Monolog"
}
},
"autoload-dev": {
"psr-4": {
"MHCGDev\\Monolog\\": "tests/Monolog"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"support": {
"issues": "https://github.com/mhcg/monolog-wp-cli/issues",
"wiki": "https://github.com/mhcg/monolog-wp-cli/wiki",
"source": "https://github.com/mhcg/monolog-wp-cli"
}
}