forked from beste/firebase-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
81 lines (81 loc) · 2.48 KB
/
composer.json
File metadata and controls
81 lines (81 loc) · 2.48 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"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",
"chat": "https://discord.gg/Yacm7unBsr"
},
"require": {
"php": "^7.4|^8.0",
"ext-ctype": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
"google/auth": "^1.18",
"google/cloud-core": "^1.42.2",
"google/cloud-storage": "^1.24.1",
"guzzlehttp/guzzle": "^6.5.5|^7.3",
"guzzlehttp/promises": "^1.4",
"guzzlehttp/psr7": "^1.7|^2.0",
"kreait/clock": "^1.1",
"kreait/firebase-tokens": "^1.16.1",
"mtdowling/jmespath.php": "^2.6.1",
"psr/cache": "^1.0.1|^2.0|^3.0",
"psr/http-message": "^1.0.1",
"psr/log": "^1.1|^2.0|^3.0",
"psr/simple-cache": "^1.0",
"riverline/multipart-parser": "^2.0.8",
"symfony/polyfill-php80": "^1.23"
},
"require-dev": {
"giggsey/libphonenumber-for-php": "^8.12.27",
"google/cloud-firestore": "^1.19.3",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^0.12.92",
"phpstan/phpstan-phpunit": "^0.12.21",
"phpunit/phpunit": "^9.5.10",
"rector/rector": "^0.11.57",
"symfony/var-dumper": "^5.3.3",
"symplify/easy-coding-standard": "^9.4"
},
"suggest": {
"google/cloud-firestore": "^1.0 to use the Firestore component",
"giggsey/libphonenumber-for-php": "^8.9 to validate phone numbers before attempting to send them to Firebase"
},
"autoload": {
"psr-4": {
"Kreait\\Firebase\\": "src/Firebase"
}
},
"autoload-dev": {
"psr-4": {
"Kreait\\Firebase\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-5.x": "5.x-dev",
"dev-4.x": "4.x-dev"
}
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/jeromegamez"
}
]
}