-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
37 lines (37 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
{
"name": "devig/voyager-shop",
"description": "This package provides a graphql shop that is manageable through the voyager admin panel.",
"type": "package",
"authors": [
{
"name": "Thomas Venturini",
"email": "[email protected]"
}
],
"require": {
"nuwave/lighthouse": "^4.12",
"tcg/voyager": "^1.3",
"tjventurini/voyager-projects": "*",
"laravel/passport": "^8.0",
"joselfonseca/lighthouse-graphql-passport-auth": "^4.1",
"spatie/laravel-stripe-webhooks": "^2.3",
"laravel/telescope": "^3.3",
"laravel/cashier": "^11.2"
},
"require-dev": {
"mll-lab/laravel-graphql-playground": "^2.1"
},
"autoload": {
"psr-4": {
"Tjventurini\\VoyagerShop\\Seeds\\": "database/seeds/",
"Tjventurini\\VoyagerShop\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Tjventurini\\VoyagerShop\\VoyagerShopServiceProvider"
]
}
}
}