-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
28 lines (28 loc) · 881 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
{
"name": "jacksleight/statamic-focal-link",
"autoload": {
"psr-4": {
"JackSleight\\StatamicFocalLink\\": "src"
}
},
"extra": {
"statamic": {
"name": "Focal Link",
"description": "This Statamic addon simplifies linking to URL hashes (fragment identifiers) by automatically discovering IDs in the destination page and providing templates for common formats. Also supports fixed options, manual input and query strings."
},
"laravel": {
"providers": [
"JackSleight\\StatamicFocalLink\\ServiceProvider"
]
}
},
"require": {
"statamic/cms": "^4.0|^5.0"
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"pixelfear/composer-dist-plugin": true
}
}
}