-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
49 lines (49 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
{
"name": "wrav/related",
"description": "A simple plugin that adds a widget within the Craft CP page sidebar, allowing you to quickly and easily access related entries.",
"type": "craft-plugin",
"version": "2.1.1",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"related"
],
"support": {
"docs": "https://github.com/wrav/related/blob/master/README.md",
"issues": "https://github.com/wrav/related/issues"
},
"license": "MIT",
"authors": [
{
"name": "reganlawton",
"homepage": "https://github.com/reganlawton"
}
],
"require": {
"craftcms/cms": "^4.0"
},
"autoload": {
"psr-4": {
"wrav\\related\\": "src/"
}
},
"extra": {
"name": "Related",
"handle": "related",
"hasCpSettings": true,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/wrav/related/master/CHANGELOG.md",
"components": {
"relatedService": "wrav\\related\\services\\RelatedService"
},
"class": "wrav\\related\\Related"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
}
}