forked from fcorz/hyperf-firebase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 1.1 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
{
"name": "rookiexxk/hyperf-firebase",
"type": "library",
"license": "MIT",
"keywords": ["Hyperf", "firebase", "firebase", "sdk", "api", "database", "fcm", "gcm"],
"description": "A Hyperf package for the Firebase PHP Admin SDK",
"autoload": {
"psr-4": {
"Fcorz\\Hyperf\\Firebase\\": "src/"
}
},
"require": {
"php": ">=8.1",
"hyperf/cache": "~3.1.0",
"hyperf/logger": "~3.1.0",
"hyperf/utils": "~3.1.0",
"hyperf/guzzle": "~3.1.0",
"kreait/firebase-php": "^7.0",
"symfony/cache": "^5.4|^6.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"phpstan/phpstan": "^1.0",
"swoole/ide-helper": "dev-master"
},
"config": {
"sort-packages": true
},
"scripts": {
"test": "phpunit -c phpunit.xml --colors=always",
"analyse": "phpstan analyse --memory-limit 1024M -l 0 ./src",
"cs-fix": "php-cs-fixer fix $1"
},
"extra": {
"hyperf": {
"config": "Fcorz\\Hyperf\\Firebase\\ConfigProvider"
}
}
}