forked from sdwru/laravel-firebase-auth-plus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
33 lines (32 loc) · 865 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
29
30
31
32
33
{
"name": "foodlz/laravel-firebase-api-auth",
"description": "Secure your laravel API with Google Firebase Auth and also get a full Firebase Admin SDK",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "foodlz",
"homepage": "http://github.com/foodlz",
"role" : "Developer"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=7.0",
"kreait/laravel-firebase": "^3.1.0",
"illuminate/contracts": "^5.8|^6.0|^7.0|^8.0",
"illuminate/support": "^5.8|^6.0|^7.0|^8.0"
},
"require-dev": {
},
"autoload": {
"psr-4": {
"foodlz\\LaravelFirebaseAuth\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"foodlz\\LaravelFirebaseAuth\\Test\\": "tests/"
}
}
}