-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
54 lines (54 loc) · 1.54 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
51
52
53
54
{
"name": "unionco/craft-related-entry-types",
"description": "A Craft Field type that allows more control over related entries.",
"type": "craft-plugin",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"related entry types"
],
"support": {
"docs": "https://github.com/unionco/related-entry-types/blob/master/README.md",
"issues": "https://github.com/unionco/related-entry-types/issues"
},
"license": "MIT",
"authors": [
{
"name": "Abry Rath <[email protected]>",
"homepage": "https://github.com/unionco"
}
],
"require": {
"craftcms/cms": "^4.0",
"rlanvin/php-rrule": "~1.6.0",
"php": "^8.0.2"
},
"autoload": {
"psr-4": {
"unionco\\relatedentrytypes\\": "src/"
}
},
"extra": {
"name": "Related Entry Types",
"handle": "related-entry-types",
"hasCpSettings": false,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/unionco/related-entry-types/master/CHANGELOG.md",
"class": "unionco\\relatedentrytypes\\RelatedEntryTypesPlugin"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.7",
"vimeo/psalm": "^5.9",
"craftcms/rector": "dev-main"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}