Download the PHP package luisbahamonde/laravel-push-notification without Composer
On this page you can find all versions of the php package luisbahamonde/laravel-push-notification. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download luisbahamonde/laravel-push-notification
More information about luisbahamonde/laravel-push-notification
Files in luisbahamonde/laravel-push-notification
Package laravel-push-notification
Short Description Laravel package to send push notifications to mobile devices (apns, gcm)
License
Informations about the package laravel-push-notification
Laravel Push Notification
Package to enable sending push notifications to devices
Installation
Update your composer.json
file to include this package as a dependency
Laravel 6.x, 7.x
Laravel 5 & Lumen
Laravel 4.*
Register the PushNotification service provider by adding it to the providers array.
Alias the PushNotification facade by adding it to the aliases array in the app/config/app.php
file.
Configuration
Copy the config file into your project by running: (Lumen users skip this)
Laravel 5.x, 6.x, 7.x
Laravel 4.*
This will generate a config file like this
Where all first level keys corresponds to an service configuration, each service has its own properties, android for instance have apiKey
and IOS uses certificate
and passPhrase
. You can set as many services configurations as you want, one for each app.
Dont forget to set service
key to identify IOS 'service'=>'apns'
and Android 'service'=>'gcm'
The certificate path must be an absolute path, so in the configuration file you can use these:
Laravel functions are also available public_path()
storage_path()
base_path()
Usage
Where app argument appNameIOS
refers to defined service in config file.
Dynamic configuration and Lumen users
You can set the app config array directly: (keep in mind the array schema)
To multiple devices and optioned message:
This package is wrapps Notification Package and adds some flavor to it.
Usage advice
This package should be used with Laravel Queues, so pushes dont blocks the user and are processed in the background, meaning a better flow.
All versions of laravel-push-notification with dependencies
illuminate/support Version ^6.0|^7.0|^8.0
sly/notification-pusher Version ^2.0