-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
39 lines (39 loc) · 1.08 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
{
"name": "pdaleramirez/category-tree",
"description": "Builds a category tree structure for your menu and links.",
"type": "craft-plugin",
"version": "1.0.6",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"category tree"
],
"support": {
"docs": "https://github.com/pdaleramirez/category-tree/blob/master/README.md",
"issues": "https://github.com/pdaleramirez/category-tree/issues"
},
"license": "MIT",
"authors": [
{
"name": "Precious Dale Ramirez",
"homepage": "https://github.com/pdaleramirez"
}
],
"require": {
"craftcms/cms": "^3.2.0"
},
"autoload": {
"psr-4": {
"pdaleramirez\\categoryTree\\": "src/"
}
},
"extra": {
"name": "Category Tree",
"handle": "category-tree",
"schemaVersion": "1",
"changelogUrl": "https://raw.githubusercontent.com/pdaleramirez/category-tree/master/CHANGELOG.md",
"class": "pdaleramirez\\categoryTree\\CategoryTree"
}
}