forked from EdwinHoksberg/php-fcm
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
31 lines (31 loc) · 921 Bytes
/
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
{
"name": "edwinhoksberg/php-fcm",
"description": "A library for sending Firebase cloud messages and managing user topic subscriptions, device groups and devices.",
"keywords": ["firebase cloud messaging", "fcm", "notifications", "firebase", "google"],
"type": "library",
"license": "MIT",
"homepage": "https://github.com/EdwinHoksberg/php-fcm",
"authors": [
{
"name": "Edwin Hoksberg",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Fcm\\": "src/"
}
},
"require": {
"php": ">= 7.3",
"guzzlehttp/guzzle": "^6.3 || ^7.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"mockery/mockery": "^1.5",
"php-coveralls/php-coveralls": "^2.5"
},
"scripts": {
"test": ["XDEBUG_MODE=coverage vendor/bin/phpunit -c phpunit.dist.xml"]
}
}