-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
composer.json
44 lines (44 loc) · 1.16 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
{
"name": "verbb/navigation",
"description": "Create navigation menus for your site.",
"type": "craft-plugin",
"version": "3.0.5",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"navigation",
"menu"
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/verbb/navigation/issues?state=open",
"source": "https://github.com/verbb/navigation",
"docs": "https://github.com/verbb/navigation",
"rss": "https://github.com/verbb/navigation/commits/v2.atom"
},
"license": "proprietary",
"authors": [
{
"name": "Verbb",
"homepage": "https://verbb.io"
}
],
"require": {
"php": "^8.2",
"craftcms/cms": "^5.0.0",
"verbb/base": "^3.0.0"
},
"autoload": {
"psr-4": {
"verbb\\navigation\\": "src/"
}
},
"extra": {
"name": "Navigation",
"handle": "navigation",
"changelogUrl": "https://raw.githubusercontent.com/verbb/navigation/craft-5/CHANGELOG.md",
"class": "verbb\\navigation\\Navigation"
}
}