forked from EdwinHoksberg/php-fcm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
28 lines (28 loc) · 804 Bytes
/
composer.json
File metadata and controls
28 lines (28 loc) · 804 Bytes
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
{
"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": "mail@edwinhoksberg.nl"
}
],
"autoload": {
"psr-4": {
"Fcm\\": "src/"
}
},
"require": {
"php": ">= 7.0",
"guzzlehttp/guzzle": "^6.3"
},
"require-dev": {
"phpunit/phpunit": "^6.5",
"mockery/mockery": "^1.0",
"satooshi/php-coveralls": "^2.0"
}
}