-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 1.3 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
{
"name": "brikdigital/entry-navigation",
"description": "Manage an entry's navigation position through its edit page.",
"type": "craft-plugin",
"version": "5.0.6",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"navigation",
"menu"
],
"support": {
"issues": "https://github.com/brikdigital/entry-navigation/issues?state=open",
"source": "https://github.com/brikdigital/entry-navigation",
"rss": "https://github.com/brikdigital/entry-navigation/commits/v2.atom"
},
"license": "MPL-2.0",
"authors": [
{
"name": "Brik.digital",
"homepage": "https://brik.digital"
}
],
"require": {
"php": "^8.3",
"ext-dom": "*",
"craftcms/cms": "^5.0.0",
"verbb/navigation": "^3.0.5"
},
"autoload": {
"psr-4": {
"brikdigital\\entrynavigation\\": "src/"
}
},
"extra": {
"name": "Entry Navigation",
"handle": "entry-navigation",
"developer": "Brik.digital",
"class": "brikdigital\\entrynavigation\\EntryNavigation"
},
"config": {
"allow-plugins": {
"craftcms/plugin-installer": true,
"yiisoft/yii2-composer": true
}
}
}