-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·42 lines (42 loc) · 1.41 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
{
"name": "madebyextreme/exceptions-to-stream",
"description": "A small plugin to capture thrown exceptions (excluding status codes in the 400 range) to send to standard error stream",
"type": "craft-plugin",
"version": "2.0.0",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"exceptions to stream"
],
"support": {
"docs": "https://github.com/extreme-creations/craft-exceptionstostream/blob/master/README.md",
"issues": "https://github.com/extreme-creations/craft-exceptionstostream/issues"
},
"license": "MIT",
"authors": [
{
"name": "Extreme",
"homepage": "https://madebyextreme.com/"
}
],
"require": {
"craftcms/cms": "^3.0.0",
"monolog/monolog": "^2.2"
},
"autoload": {
"psr-4": {
"madebyextreme\\exceptionstostream\\": "src/"
}
},
"extra": {
"name": "Exceptions To Stream",
"handle": "exceptions-to-stream",
"developer": "Extreme",
"developerUrl": "https://madebyextreme.com/",
"documentationUrl": "https://github.com/extreme-creations/craft-exceptionstostream/blob/master/README.md",
"changelogUrl": "https://raw.githubusercontent.com/extreme-creations/craft-exceptionstostream/master/CHANGELOG.md",
"class": "madebyextreme\\exceptionstostream\\ExceptionsToStream"
}
}