Download the PHP package demian/laravel-notifications-gcm without Composer
On this page you can find all versions of the php package demian/laravel-notifications-gcm. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download demian/laravel-notifications-gcm
More information about demian/laravel-notifications-gcm
Files in demian/laravel-notifications-gcm
Package laravel-notifications-gcm
Short Description Android GCM Push Notification Channel
License MIT
Homepage https://github.com/laravel-notification-channels/gcm
Informations about the package laravel-notifications-gcm
Laravel GCM (Google Cloud Messaging) Notification Channel
This package makes it easy to send notifications using Google Cloud Messaging (GCM) with Laravel 5.3.
This package is based on ZendService\Google\Gcm, so please read that documentation for more information.
Contents
- Installation
- Setting up the GCM service
- Usage
- Available Message methods
- Changelog
- Testing
- Security
- Contributing
- Credits
- License
Installation
Install this package with Composer:
composer require laravel-notification-channels/gcm
Register the ServiceProvider in your config/app.php:
NotificationChannels\Gcm\GcmServiceProvider::class,
Setting up the GCM service
You need to register for a server key for Google Cloud Messaging for your App in the Google API Console: https://console.cloud.google.com/apis/
Add the API key to your configuration in config/broadcasting.php
'connections' => [
....
'gcm' => [
'key' => env('GCM_KEY'),
],
...
]
Usage
You can now send messages to GCM by creating a GcmMessage:
In your notifiable
model, make sure to include a routeNotificationForGcm()
method, which return one or an array of tokens.
Available methods
- title($str)
- message($str)
- badge($integer)
- priorty(
GcmMessage::PRIORITY_NORMAL
orGcmMessage::PRIORITY_HIGH
) - data($key, $mixed)
- action($action, $params) (Will set an
action
data key)
Changelog
Please see CHANGELOG for more information what has changed recently.
Testing
Security
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
Contributing
Please see CONTRIBUTING for details.
Credits
- Fruitcake
- All Contributors
License
The MIT License (MIT). Please see License File for more information.
All versions of laravel-notifications-gcm with dependencies
illuminate/events Version ^5.1|^5.2|^5.3
illuminate/notifications Version ^5.3
illuminate/queue Version ^5.1|^5.2|^5.3
illuminate/support Version ^5.1|^5.2|^5.3
zendframework/zend-http Version >=2.0.0
zendframework/zend-json Version >=2.0.0