-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 loc) · 1.25 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
{
"name": "chrismou/craft-rollbar",
"description": "Rollbar integration for CraftCMS",
"type": "craft-plugin",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"rollbar"
],
"support": {
"docs": "https://github.com/chrismou/craft-rollbar/blob/master/README.md",
"issues": "https://github.com/chrismou/craft-rollbar/issues",
"changelog": "https://github.com/chrismou/craft-rollbar/blob/master/CHANGELOG.md"
},
"license": "MIT",
"authors": [
{
"name": "chrismou",
"homepage": "https://mou.me"
},
{
"name": "newism",
"homepage": "https://newis.com.au"
}
],
"require": {
"php": ">=8.2 <9.0",
"craftcms/cms": "^5.0.0-alpha.1",
"rollbar/rollbar": "^4.0"
},
"autoload": {
"psr-4": {
"chrismou\\rollbar\\": "src/"
}
},
"extra": {
"name": "Rollbar for Craft CMS",
"handle": "chrismou-rollbar",
"hasCpSettings": true,
"hasCpSection": false
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
}
}