forked from laravel-notification-channels/gcm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.26 KB
/
composer.json
File metadata and controls
51 lines (51 loc) · 1.26 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "laravel-notification-channels/gcm",
"description": "Android GCM Push Notification Channel",
"homepage": "https://github.com/laravel-notification-channels/gcm",
"license": "MIT",
"authors": [
{
"name": "Fruitcake",
"email": "info@fruitcake.nl",
"homepage": "https://fruitcake.nl"
}
],
"require": {
"php": ">=7.0.0",
"illuminate/events": "^5.5",
"illuminate/notifications": "^5.5",
"illuminate/queue": "^5.5",
"illuminate/support": "^5.5",
"zendframework/zendservice-google-gcm": "^2.0"
},
"require-dev": {
"mockery/mockery": "~1.0",
"phpunit/phpunit": "~6.0"
},
"autoload": {
"psr-4": {
"NotificationChannels\\Gcm\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"NotificationChannels\\Gcm\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "0.2-dev"
},
"laravel": {
"providers": [
"NotificationChannels\\Gcm\\GcmServiceProvider"
]
}
}
}