forked from sngrl/php-firebase-cloud-messaging
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
31 lines (31 loc) · 891 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": "vanderbilt-redcap/php-firebase-cloud-messaging",
"description": "PHP API for Firebase Cloud Messaging from Google",
"license": "MIT",
"keywords": ["PHP","FCM","Google","Firebase","Cloud","Notifications","Android","iOS","Chrome"],
"homepage": "https://github.com/vanderbilt-redcap/php-firebase-cloud-messaging",
"authors": [
{
"name": "Vaishali Jagtap",
"email": "[email protected]"
}
],
"require": {
"guzzlehttp/guzzle": "*",
"php": ">=5.5"
},
"require-dev": {
"phpunit/phpunit": "*",
"mockery/mockery" : "*"
},
"autoload": {
"psr-4": {
"Vanderbilt\\PhpFirebaseCloudMessaging\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Vanderbilt\\PhpFirebaseCloudMessaging\\Tests\\": "tests/"
}
}
}