forked from codemonauts/craft-glossary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 1.09 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
{
"name": "codemonauts/craft-glossary",
"description": "Add glossaries with tooltips to Craft CMS.",
"version": "1.0.5",
"type": "craft-plugin",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"glossary"
],
"license": "proprietary",
"authors": [
{
"name": "codemonauts",
"homepage": "https://codemonauts.com"
}
],
"support": {
"source": "https://github.com/codemonauts/craft-glossary",
"docs": "https://plugins.codemonauts.com/plugins/glossary/Introduction.html",
"issues": "https://github.com/codemonauts/craft-glossary/issues"
},
"require": {
"craftcms/cms": "^3.5.0"
},
"autoload": {
"psr-4": {
"codemonauts\\glossary\\": "src/"
}
},
"extra": {
"handle": "glossary",
"class": "codemonauts\\glossary\\Glossary",
"name": "Glossary",
"description": "Add glossaries with tooltips to Craft CMS.",
"changelogUrl": "https://github.com/codemonauts/craft-glossary/blob/master/CHANGELOG.md",
"documentationUrl": "https://plugins.codemonauts.com/plugins/glossary/Introduction.html"
}
}