forked from kreait/firebase-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 1.32 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
{
"name": "kreait/firebase-bundle",
"description": "Symfony Bundle for the Firebase Admin SDK",
"keywords": ["firebase", "google", "sdk", "api", "database", "symfony", "bundle", "symfony-bundle"],
"homepage": "https://github.com/kreait/firebase-bundle",
"license": "MIT",
"type": "symfony-bundle",
"authors": [
{
"name": "Jérôme Gamez",
"homepage": "https://github.com/jeromegamez"
}
],
"require": {
"php": "^7.2|^8.0",
"kreait/firebase-php": "^5.5",
"psr/cache": "^1.0",
"psr/simple-cache": "^1.0",
"symfony/cache": "^3.4|^4.2|^5.0",
"symfony/dependency-injection": "^3.4.26|^4.2.7|^5.0",
"symfony/config": "^3.4.26|^4.2|^5.0",
"symfony/http-kernel": "^3.4|^4.2|^5.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16",
"phpunit/phpunit": "^8.5"
},
"autoload": {
"psr-4": {
"Kreait\\Firebase\\Symfony\\Bundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Kreait\\Firebase\\Symfony\\Bundle\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/jeromegamez"
}
]
}