-
Notifications
You must be signed in to change notification settings - Fork 127
/
composer.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": "laravel-notification-channels/fcm",
"description": "FCM (Firebase Cloud Messaging) Notifications Driver for Laravel",
"homepage": "https://github.com/laravel-notification-channels/fcm",
"license": "MIT",
"authors": [
{
"name": "Chris Bautista",
"email": "[email protected]",
"homepage": "https://coreproc.com",
"role": "Developer"
}
],
"require": {
"php": ">= 8.2",
"guzzlehttp/guzzle": "^7.0",
"illuminate/notifications": "^10.0|^11.0",
"illuminate/support": "^10.0|^11.0",
"kreait/laravel-firebase": "^5.7"
},
"require-dev": {
"mockery/mockery": "^1.5.1",
"phpunit/phpunit": "^10.0"
},
"autoload": {
"psr-4": {
"NotificationChannels\\Fcm\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"NotificationChannels\\Fcm\\Test\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"config": {
"sort-packages": true
}
}