forked from sngrl/php-firebase-cloud-messaging
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 878 Bytes
/
composer.json
File metadata and controls
32 lines (32 loc) · 878 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
29
30
31
32
{
"name": "redjanym/php-firebase-cloud-messaging",
"description": "PHP SDK for Firebase Cloud Messaging from Google",
"license": "MIT",
"keywords": ["PHP","FCM","Google","Firebase","Cloud","Notifications","Android","iOS"],
"homepage": "https://github.com/redjanym/php-firebase-cloud-messaging",
"authors": [
{
"name": "Redjan Ymeraj",
"email": "ymerajredjan@gmail.com"
}
],
"require": {
"guzzlehttp/guzzle": "*",
"php": ">=7.4",
"google/apiclient": "*"
},
"autoload": {
"psr-4": {
"RedjanYm\\FCM\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"RedjanYm\\FCM\\Tests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^9.6 || ^10.5 || ^11.0",
"phpstan/phpstan": "^1.12 || ^2.0"
}
}