-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathcomposer.json
50 lines (50 loc) · 1.39 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
{
"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": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4",
"kreait/firebase-php": "^7.0",
"psr/simple-cache": "^1.0 || ^2.0 || ^3.0",
"symfony/cache": "^5.4 || ^6.0 || ^7.0",
"symfony/config": "^5.4 || ^6.0 || ^7.0",
"symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
"symfony/http-kernel": "^5.4 || ^6.0 || ^7.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5.10"
},
"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"
}
],
"scripts": {
"test": [
"vendor/bin/phpunit"
]
}
}