Package Data | |
---|---|
Maintainer Username: | laraviet |
Maintainer Contact: | thanhcttsp@gmail.com (Eric Nguyen) |
Package Create Date: | 2015-03-06 |
Package Last Update: | 2015-03-06 |
Home Page: | |
Language: | PHP |
License: | Unknown |
Last Refreshed: | 2025-01-24 15:03:47 |
Package Statistics | |
---|---|
Total Downloads: | 960 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 3 |
Total Watchers: | 5 |
Total Forks: | 0 |
Total Open Issues: | 0 |
Package to enable sending push notifications to devices
Update your composer.json
file to include this package as a dependency
"laraviet/laravel-push-notification": "2.*"
Register the PushNotification service provider by adding it to the providers array in the app/config/app.php
file.
'providers' => array(
Laraviet\LaravelPushNotification\LaravelPushNotificationServiceProvider
)
Alias the PushNotification facade by adding it to the aliases array in the app/config/app.php
file.
'aliases' => array(
'PushNotification' => 'Laraviet\LaravelPushNotification\Facades\PushNotification'
)
Copy the config file into your project by running
php artisan vendor:publish
This will generate a config file like this
array(
'appNameIOS'=>array(
'environment' => 'development',
'certificate' => '/path/to/certificate.pem',
'passPhrase' => 'password',
'service' => 'apns'
),
'appNameAndroid'=>array(
'environment' => 'production',
'apiKey' => 'yourAPIKey',
'service' => 'gcm'
)
);
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.
service
key to identify IOS 'service'=>'apns'
and Android 'service'=>'gcm'
//Path to the 'app' folder
'certificate'=>app_path().'/myCert.pem'
Laravel functions are also available public_path()
storage_path()
base_path()
PushNotification::app('appNameIOS')
->to($deviceToken)
->send('Hello World, i`m a push message');
Where app argument appNameIOS
refers to defined service in config file.
To multiple devices and optioned message:
$devices = PushNotification::DeviceCollection(array(
PushNotification::Device('token', array('badge' => 5)),
PushNotification::Device('token1', array('badge' => 1)),
PushNotification::Device('token2')
));
$message = PushNotification::Message('Message Text',array(
'badge' => 1,
'sound' => 'example.aiff',
'actionLocKey' => 'Action button title!',
'locKey' => 'localized key',
'locArgs' => array(
'localized args',
'localized args',
),
'launchImage' => 'image.jpg',
'custom' => array('custom data' => array(
'we' => 'want', 'send to app'
))
));
collection = PushNotification::app('appNameIOS')
->to($devices)
->send($message);
// get response for each device push
foreach ($collection->pushManager as $push) {
$response = $push->getAdapter()->getResponse();
}
// access to adapter for advanced settings
$push = PushNotification::app('appNameAndroid');
$push->adapter->setAdapterParameters(['sslverifypeer' => false]);
This package is wrapps Notification Package and adds some flavor to it.
This package should be used with Laravel Queues, so pushes dont blocks the user and are processed in the background, meaning a better flow.