-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 991 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
{
"name": "onedesign/airbrake-craft",
"description": "Logs Craft 3 server-side errors to airbrake.io.",
"type": "craft-plugin",
"version": "1.0.1",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"airbrake"
],
"support": {
"docs": "https://github.com/onedesign/airbrake-craft/blob/master/README.md",
"issues": "https://github.com/onedesign/airbrake-craft/issues"
},
"license": "MIT",
"authors": [
{
"name": "One Design Company",
"homepage": "https://onedesigncompany.com"
}
],
"require": {
"craftcms/cms": "^3.0.0",
"airbrake/phpbrake": "^0.8.0"
},
"autoload": {
"psr-4": {
"onedesign\\airbrake\\": "src/"
}
},
"extra": {
"name": "Airbrake",
"handle": "airbrake",
"hasCpSettings": true,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/onedesign/airbrake-craft/master/CHANGELOG.md",
"class": "onedesign\\airbrake\\Airbrake"
}
}