forked from matheus-rosa/php-fcm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
41 lines (41 loc) · 1.08 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
40
41
{
"name": "guigpm/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/guigpm/php-fcm",
"authors": [
{
"name": "Patrick Albertini",
"email": "[email protected]"
},
{
"name": "Kai Bielenberg",
"email": "[email protected]"
},
{
"name": "Guilherme Mattioli",
"email": "[email protected]"
}
],
"require": {
"guzzlehttp/guzzle": "^6.2",
"php": ">=5.6"
},
"require-dev": {
"phpunit/phpunit": "4.8.*",
"mockery/mockery" : "0.9.5",
"php-coveralls/php-coveralls": "^2.1",
"larapack/dd": "1.*"
},
"autoload": {
"psr-4": {
"paragraph1\\phpFCM\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"paragraph1\\phpFCM\\Tests\\": "tests/"
}
}
}