-
-
Notifications
You must be signed in to change notification settings - Fork 452
Expand file tree
/
Copy pathcomposer.json
More file actions
159 lines (159 loc) · 4.84 KB
/
Copy pathcomposer.json
File metadata and controls
159 lines (159 loc) · 4.84 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
{
"name": "kreait/firebase-php",
"description": "Firebase Admin SDK",
"keywords": ["firebase", "google", "sdk", "api", "database"],
"type": "library",
"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"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/jeromegamez"
}
],
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0",
"ext-ctype": "*",
"ext-filter": "*",
"ext-json": "*",
"ext-mbstring": "*",
"beste/clock": "^3.0",
"beste/in-memory-cache": "^1.3.1",
"beste/json": "^1.5.1",
"cuyz/valinor": "^2.2.1",
"fig/http-message-util": "^1.1.5",
"firebase/php-jwt": "^6.10.2 || ^7.0.2",
"google/auth": "^1.45",
"google/cloud-storage": "^1.48.7",
"guzzlehttp/guzzle": "^7.9.2",
"guzzlehttp/promises": "^2.0.4",
"guzzlehttp/psr7": "^2.7",
"kreait/firebase-tokens": "^5.2",
"lcobucci/jwt": "^5.3",
"mtdowling/jmespath.php": "^2.8.0",
"psr/cache": "^2.0 || ^3.0",
"psr/clock": "^1.0",
"psr/http-client": "^1.0.3",
"psr/http-factory": "^1.1",
"psr/http-message": "^1.1 || ^2.0",
"psr/log": "^3.0.2"
},
"require-dev": {
"php-cs-fixer/shim": "^3.88.2",
"google/cloud-firestore": "^1.54.2",
"phpstan/extension-installer": "^1.4.3",
"phpstan/phpstan": "^2.1.31",
"phpstan/phpstan-deprecation-rules": "^2.0.3",
"phpstan/phpstan-strict-rules": "^2.0.7",
"phpstan/phpstan-phpunit": "^2.0.7",
"phpunit/phpunit": "^10.5.58",
"rector/rector": "^2.2.2",
"shipmonk/composer-dependency-analyser": "^1.8.3",
"symfony/var-dumper": "^6.4.15 || ^7.3.4",
"vlucas/phpdotenv": "^5.6.2"
},
"suggest": {
"google/cloud-firestore": "^1.0 to use the Firestore component"
},
"autoload": {
"psr-4": {
"Kreait\\Firebase\\": "src/Firebase"
}
},
"autoload-dev": {
"psr-4": {
"Kreait\\Firebase\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"scripts": {
"analyse": [
"XDEBUG_MODE=off vendor/bin/phpstan"
],
"analyze": "@analyse",
"cs": [
"vendor/bin/php-cs-fixer fix --diff --verbose"
],
"docs": [
"@docs:clean",
"@docs:setup",
"@docs:build"
],
"docs:build": [
"cd docs && uv run sphinx-build -b html . _build/html"
],
"docs:clean": [
"cd docs && rm -rf _build/*"
],
"docs:linkcheck": [
"cd docs && uv run sphinx-build -b linkcheck . _build/linkcheck"
],
"docs:serve": [
"cd docs && uv run sphinx-autobuild . _build/html --host 0.0.0.0 --port 8000"
],
"docs:setup": [
"cd docs && uv sync"
],
"pre-push": [
"@rector-fix",
"@test",
"@test-bc"
],
"rector": [
"vendor/bin/rector --dry-run"
],
"rector-fix": [
"vendor/bin/rector",
"@cs"
],
"reset-project": [
"tests/bin/reset-project"
],
"test": [
"Composer\\Config::disableProcessTimeout",
"@analyze",
"@test-dependencies",
"vendor/bin/phpunit --stop-on-error --stop-on-failure"
],
"test-bc": [
"docker run -it --rm -v `pwd`:/app nyholm/roave-bc-check"
],
"test-coverage": [
"Composer\\Config::disableProcessTimeout",
"XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-html=.build/coverage"
],
"test-dependencies": [
"vendor/bin/composer-dependency-analyser"
],
"test-emulator": [
"FIREBASE_AUTH_EMULATOR_HOST=localhost:9099 FIREBASE_DATABASE_EMULATOR_HOST=localhost:9100 firebase emulators:exec --only auth,database --project beste-firebase 'vendor/bin/phpunit --group=emulator'"
],
"test-integration": [
"vendor/bin/phpunit --testsuite=integration"
],
"test-units": [
"vendor/bin/phpunit --testsuite=unit"
]
},
"extra": {
"branch-alias": {
"dev-7.x": "7.x-dev"
}
}
}