-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
44 lines (44 loc) · 1.14 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
42
43
44
{
"name": "williamcruzme/laravel-fcm",
"type": "library",
"description": "A powerful Laravel package to send Push Notifications",
"keywords": [
"laravel",
"notification",
"channels"
],
"license": "MIT",
"authors": [
{
"name": "williamcruzme",
"email": "[email protected]",
"homepage": "https://github.com/williamcruzme"
}
],
"require": {
"php": "^8.0",
"guzzlehttp/guzzle": "^6.2 || ^7.0",
"illuminate/notifications": "~5.6 || ~6.0 || ~7.0 || ~8.0 || ~9.0",
"illuminate/support": "~5.6 || ~6.0 || ~7.0 || ~8.0 || ~9.0",
"kreait/laravel-firebase": "^4.1",
"spatie/enum": "^2.3 || ^3.0"
},
"autoload": {
"psr-4": {
"Williamcruzme\\Fcm\\": "src"
}
},
"extra": {
"laravel": {
"providers": [
"Williamcruzme\\Fcm\\FcmServiceProvider"
],
"aliases": {
"Device": "Williamcruzme\\Fcm\\Facades\\Device"
}
}
},
"config": {
"sort-packages": true
}
}