forked from codemonauts/craft-glossary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.1 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
{
"name": "codemonauts/craft-glossary",
"description": "Add glossaries with tooltips to Craft CMS.",
"version": "3.1.0",
"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": "^5.0.0-beta.1",
"php": "^8.2"
},
"autoload": {
"psr-4": {
"codemonauts\\glossary\\": "src/"
}
},
"extra": {
"handle": "glossary",
"class": "codemonauts\\glossary\\Glossary",
"name": "Glossary"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"craftcms/rector": "dev-main"
}
}