-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
55 lines (55 loc) · 1.46 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
51
52
53
54
55
{
"name": "twokings/hierarchical-routes",
"description": "Dynamically make hierarchical routes based on the menu configuration",
"type": "bolt-extension",
"keywords": [
"breadcrumbs",
"child-page",
"hierarchical content",
"hierarchical routes",
"hierarchy",
"menu",
"parent-page",
"structure",
"sub-page"
],
"require": {
"bolt/bolt": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^4.7"
},
"license": "MIT",
"authors": [
{
"name": "Xiao-Hu Tai",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Bolt\\Extension\\TwoKings\\HierarchicalRoutes\\": "src",
"PBergman\\": "lib/PBergman"
}
},
"autoload-dev": {
"psr-4": {
"Bolt\\Extension\\TwoKings\\HierarchicalRoutes\\Tests\\": "tests",
"Bolt\\Tests\\": "vendor/bolt/bolt/tests/phpunit/unit/"
}
},
"extra": {
"bolt-assets": "web",
"bolt-class": "Bolt\\Extension\\TwoKings\\HierarchicalRoutes\\HierarchicalRoutesExtension",
"bolt-icon": "bolt-icon.png",
"bolt-screenshots": [
"screenshots/screenshot1.png",
"screenshots/screenshot2.png"
]
},
"suggest": {
"bacboslab/menueditor": "A visual menu editor for Bolt CMS"
}
}