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