-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
38 lines (38 loc) · 979 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
{
"name": "dutchheight/craft-navie",
"description": "Navigation plugin for Craft CMS 3",
"type": "craft-plugin",
"version": "1.2.3",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"navie"
],
"support": {
"docs": "https://github.com/dutchheight/craft-navie/blob/master/README.md",
"issues": "https://github.com/dutchheight/craft-navie/issues"
},
"license": "proprietary",
"authors": [
{
"name": "Dutch Height",
"homepage": "https://www.dutchheight.com"
}
],
"require": {
"craftcms/cms": "^3.0.0"
},
"autoload": {
"psr-4": {
"dutchheight\\navie\\": "src/"
}
},
"extra": {
"name": "Navie",
"handle": "navie",
"changelogUrl": "https://raw.githubusercontent.com/dutchheight/navie/master/CHANGELOG.md",
"class": "dutchheight\\navie\\Navie"
}
}