-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
executable file
·46 lines (46 loc) · 1.14 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
{
"name": "narwy/laravel-mongodb-passport",
"description": "[2019] [Laravel v6] - A package to allow laravel/passport use with jenssegers/laravel-mongodb",
"homepage": "https://github.com/narwy/laravel-mongodb-passport",
"license": "MIT",
"keywords": [
"laravel",
"laravel-mongodb",
"laravel-mongodb-passport",
"laravel-passport",
"mongodb",
"passport",
"narwy"
],
"require": {
"php": "^7.1.3",
"jenssegers/mongodb": "^3.6",
"laravel/framework": "^6.0",
"laravel/passport": "^7.5",
"laravel/tinker": "^1.0"
},
"autoload": {
"psr-4": {
"Narwy\\Mongodb\\": "src"
}
},
"authors": [
{
"name": "Nick Anthony",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Steve Porter",
"email": "[email protected]",
"role": "Developer"
}
],
"extra": {
"laravel": {
"providers": [
"Narwy\\Mongodb\\MongodbPassportServiceProvider"
]
}
}
}