-
-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathcomposer.json
More file actions
55 lines (55 loc) · 1.58 KB
/
composer.json
File metadata and controls
55 lines (55 loc) · 1.58 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
{
"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/beste/firebase-bundle",
"license": "MIT",
"type": "symfony-bundle",
"authors": [
{
"name": "Jérôme Gamez",
"homepage": "https://github.com/jeromegamez"
}
],
"require": {
"php": "~8.3.0 || ~8.4.0 || ~8.5.0",
"kreait/firebase-php": "^8.1",
"psr/simple-cache": "^1.0 || ^2.0 || ^3.0",
"symfony/cache": "^6.4 || ^7.4 || ^8.0",
"symfony/config": "^6.4 || ^7.4 || ^8.0",
"symfony/dependency-injection": "^6.4 || ^7.4 || ^8.0",
"symfony/http-kernel": "^6.4 || ^7.4 || ^8.0"
},
"require-dev": {
"phpunit/phpunit": "^12.5.11"
},
"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"
],
"test:coverage": [
"Composer\\Config::disableProcessTimeout",
"mkdir -p build",
"XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-html=build/coverage"
]
}
}