-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
43 lines (43 loc) · 1.02 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
{
"name": "apurv/voyager-site",
"description": "Voyager Site used to generate dynamic cms page with Laravel Voyager Admin.",
"license": "MIT",
"authors": [
{
"name": "Apurv Bhavsar",
"email": "apurv.bhavsar.09@gmail.com"
}
],
"homepage": "https://github.com/apurvbhavsar/voyager-site",
"type": "library",
"keywords": [
"voyager-site",
"laravel-voyager",
"laravel-site",
"frontend",
"laravel-frontend",
"laravel",
"cms",
"laravel-cms",
"dynamic-cms"
],
"require": {
"tcg/voyager": "^1.6",
"artesaos/seotools": "^1.1.0"
},
"autoload": {
"psr-4": {
"Apurv\\LaravelSite\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Apurv\\LaravelSite\\VoyagerSiteProvider"
],
"aliases": {
"Debugbar": "Apurv\\LaravelSite\\Facades\\Site"
}
}
}
}