-
Notifications
You must be signed in to change notification settings - Fork 32
/
composer.json
35 lines (35 loc) · 1.07 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
{
"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",
"ext-json": "*",
"guzzlehttp/guzzle": "^6.3 || ^7.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"mockery/mockery": "^1.5",
"php-coveralls/php-coveralls": "^2.5"
},
"scripts": {
"test": ["vendor/bin/phpunit -c phpunit.dist.xml"]
},
"scripts-descriptions": {
"test" : "Set PHP.ini xdebug.mode=coverage (windows) OR set 'test':['XMODE_DEBUG=coverage vendor/bin/phpunit ...'] (linux)"
}
}