-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 1.04 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
{
"name": "matfish/craft-entry-meta",
"description": "Add metadata to any element",
"type": "craft-plugin",
"keywords": [
"elements",
"metadata"
],
"license": "proprietary",
"authors": [
{
"name": "Mat Fish",
"homepage": "https://github.com/matfish2/craft-entry-meta"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/matfish2/craft-entry-meta/issues?state=open",
"source": "https://github.com/matfish2/craft-entry-meta",
"docs": "https://github.com/matfish2/craft-entry-meta/blob/master/README.md"
},
"require": {
"craftcms/cms": "^5.0"
},
"autoload": {
"psr-4": {
"matfish\\EntryMeta\\": "src/"
}
},
"extra": {
"name": "Element Meta",
"handle": "entry-meta",
"changelogUrl": "https://raw.githubusercontent.com/matfish2/craft-entry-meta/master/CHANGELOG.md",
"class": "matfish\\EntryMeta\\EntryMeta"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
}
}