forked from kreait/firebase-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
59 lines (59 loc) · 1.57 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
{
"name": "kreait/firebase-php",
"description": "Firebase Admin SDK",
"keywords": ["firebase", "google", "sdk", "api", "database"],
"homepage": "https://github.com/kreait/firebase-php",
"license": "MIT",
"authors": [
{
"name": "Jérôme Gamez",
"homepage": "https://github.com/jeromegamez"
}
],
"support": {
"docs": "https://firebase-php.readthedocs.io",
"issues": "https://github.com/kreait/firebase-php/issues",
"source": "https://github.com/kreait/firebase-php"
},
"require": {
"php": "^7.0",
"ext-mbstring": "*",
"ext-openssl": "*",
"giggsey/libphonenumber-for-php": "^8.9",
"google/auth": "^0.11.0|^1.0",
"guzzlehttp/guzzle": "^6.2.1",
"kreait/firebase-tokens": "^1.1.1",
"lcobucci/jwt": "^3.2",
"mtdowling/jmespath.php": "^2.3",
"superbalist/flysystem-google-storage": "^7.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.0",
"phpstan/phpstan-phpunit": "^0.9.2",
"phpunit/phpunit": "^6.0|^7.0"
},
"autoload": {
"psr-4": {
"Kreait\\Firebase\\": "src/Firebase"
},
"files": [
"src/Firebase.php"
]
},
"autoload-dev": {
"psr-4": {
"Kreait\\Firebase\\Tests\\": "tests"
}
},
"config": {
"platform": {
"php": "7.0"
},
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "4.x-dev"
}
}
}