forked from Paragraph1/php-fcm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 981 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
32
33
34
35
36
{
"name": "paragraph1/php-fcm",
"description": "PHP application server for google firebase cloud messaging (FCM)",
"license": "MIT",
"keywords": ["Firebase Cloud Messaging","PHP","FCM","Google","Firebase","Notifications","Android","iOS","GCM"],
"homepage": "https://github.com/Paragraph1/phpFCM",
"authors": [
{
"name": "Patrick Albertini",
"email": "[email protected]"
},
{
"name": "Kai Bielenberg",
"email": "[email protected]"
}
],
"require": {
"guzzlehttp/guzzle": "^6.2",
"php": ">=5.5"
},
"require-dev": {
"phpunit/phpunit": "4.8.*",
"mockery/mockery" : "0.9.5",
"satooshi/php-coveralls": "dev-master"
},
"autoload": {
"psr-4": {
"paragraph1\\phpFCM\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"paragraph1\\phpFCM\\Tests\\": "tests/"
}
}
}