-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 954 Bytes
/
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
{
"name": "kuriousagency/category-groups",
"description": "Craft CMS category groups",
"type": "craft-plugin",
"minimum-stability": "dev",
"version": "1.0.0",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"category groups"
],
"support": {
"docs": "https://github.com/kuriousagency/category-groups/blob/master/README.md",
"issues": "https://github.com/kuriousagency/category-groups/issues"
},
"license": "MIT",
"authors": [{
"name": "Kurious Agency",
"homepage": "https://kurious.agency"
}],
"require": {
"craftcms/cms": "^3.0.0-RC1"
},
"autoload": {
"psr-4": {
"kuriousagency\\categorygroups\\": "src/"
}
},
"extra": {
"name": "Category Groups",
"handle": "category-groups",
"hasCpSettings": false,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/kuriousagency/category-groups/master/CHANGELOG.md",
"class": "kuriousagency\\categorygroups\\CategoryGroups"
}
}