-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
39 lines (39 loc) · 1.05 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": "visuellverstehen/statamic-anchor-navigation",
"description": "A Statamic tag for creating an anchor nav for all headings generated by the bard editor.",
"keywords": [ "statamic", "addon", "bard", "navigation", "anchor", "v4", "v5" ],
"license": "MIT",
"type": "statamic-addon",
"autoload": {
"psr-4": {
"VV\\AnchorNavigation\\": "src"
}
},
"authors": [
{
"name": "visuellverstehen"
}
],
"support": {
"email": "[email protected]"
},
"extra": {
"statamic": {
"name": "Anchor Navigation",
"description": "A Statamic tag for creating an anchor nav for all headings generated by the bard editor."
},
"laravel": {
"providers": [
"VV\\AnchorNavigation\\ServiceProvider"
]
}
},
"require": {
"statamic/cms": "^4.0 || ^5.0"
},
"config": {
"allow-plugins": {
"pixelfear/composer-dist-plugin": true
}
}
}