-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 1.06 KB
/
composer.json
File metadata and controls
37 lines (37 loc) · 1.06 KB
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
{
"name": "redjanym/fcm-bundle",
"type": "symfony-bundle",
"description": "A Symfony Bundle for projects to send notifications in mobile devices through Firebase Cloud Messaging HTTP V1 API",
"license": "MIT",
"keywords": ["PHP","FCM","Google","Firebase","Cloud","Notifications","Symfony", "Bundle","Android","iOS","Chrome", "HTTP V1"],
"homepage": "https://github.com/redjanym/FCMBundle",
"authors": [
{
"name": "Redjan Ymeraj",
"email": "ymerajredjan@gmail.com",
"role": "Developer"
}
],
"require": {
"php": ">=7.4",
"redjanym/php-firebase-cloud-messaging": "^2.1"
},
"require-dev": {
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^9.6 || ^10.0",
"symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
"symfony/config": "^5.4 || ^6.0 || ^7.0",
"symfony/http-kernel": "^5.4 || ^6.0 || ^7.0",
"symfony/yaml": "^5.4 || ^6.0 || ^7.0"
},
"autoload": {
"psr-4": {
"RedjanYm\\FCMBundle\\": ""
}
},
"autoload-dev": {
"psr-4": {
"RedjanYm\\FCMBundle\\Tests\\": "Tests/"
}
}
}