-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (43 loc) · 1.24 KB
/
composer.json
File metadata and controls
43 lines (43 loc) · 1.24 KB
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
{
"version": "3.0.6",
"name": "robuust/craft-reverserelations",
"description": "Reverse Relations for Craft",
"type": "craft-plugin",
"license": "MIT",
"authors": [
{
"name": "Bob Olde Hampsink",
"email": "bob@robuust.digital"
}
],
"support": {
"email": "bob@robuust.digital"
},
"extra": {
"schemaVersion": "1.0.1",
"handle": "reverserelations",
"name": "Reverse Relations",
"developer": "Robuust",
"developerUrl": "https://robuust.digital",
"documentationUrl": "https://github.com/robuust/craft-reverserelations/blob/master/README.md",
"changelogUrl": "https://github.com/robuust/craft-reverserelations/blob/master/CHANGELOG.md",
"downloadUrl": "https://github.com/robuust/craft-reverserelations/releases/latest",
"hasSettings": false,
"hasCpSection": false
},
"require": {
"php": "^8.2",
"craftcms/cms": ">=5.0"
},
"autoload": {
"psr-4": {
"robuust\\reverserelations\\": "src/"
}
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
}
}