This repository has been archived by the owner on Jul 8, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 90
/
composer.json
executable file
·60 lines (60 loc) · 1.67 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
50
51
52
53
54
55
56
57
58
59
60
{
"name": "pvtl/voyager-frontend",
"description": "The Missing Front-end for The Missing Laravel Admin.",
"keywords": [
"laravel",
"voyager",
"frontend"
],
"license": "MIT",
"authors": [
{
"name": "Pivotal Agency",
"homepage": "http://pivotalagency.com.au",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"pvtl/voyager-pages": "^0.2.13",
"pvtl/voyager-blog": "^0.2.10",
"tcg/voyager": "^1.3",
"spatie/laravel-sitemap": "^5.7",
"teamtnt/laravel-scout-tntsearch-driver": "^11.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5",
"orchestra/testbench": "^3.4",
"illuminated/testing-tools": "^0.5.5"
},
"autoload": {
"psr-4": {
"Pvtl\\VoyagerFrontend\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Pvtl\\VoyagerFrontend\\Test\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Pvtl\\VoyagerFrontend\\Providers\\VoyagerFrontendServiceProvider"
],
"aliases": {
"VoyagerFrontend": "Pvtl\\VoyagerFrontend\\Facade"
}
}
},
"scripts": {
"test": "phpunit",
"post-package-install": [
"@php artisan voyager-frontend:install"
],
"post-autoload-dump": [
"@php artisan vendor:publish --provider=Laravel\\Scout\\ScoutServiceProvider",
"@php artisan vendor:publish --provider=Spatie\\Sitemap\\SitemapServiceProvider --tag=config"
]
}
}