2017 © Pedro Peláez
 

library laravel-push-notification

Laravel package to send push notifications to mobile devices (apns, gcm,wpn,Blackberry)

image

kirant400/laravel-push-notification

Laravel package to send push notifications to mobile devices (apns, gcm,wpn,Blackberry)

  • Wednesday, June 10, 2015
  • by kirant400
  • Repository
  • 1 Watchers
  • 0 Stars
  • 39 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 230 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

Laravel Push Notification

Package to enable sending push notifications to devices, (*1)

Installation

Update your composer.json file to include this package as a dependency, (*2)

"davibennun/laravel-push-notification": "dev-master"

Register the PushNotification service provider by adding it to the providers array in the app/config/app.php file., (*3)

'providers' => array(
    Davibennun\LaravelPushNotification\LaravelPushNotificationServiceProvider
)

Alias the PushNotification facade by adding it to the aliases array in the app/config/app.php file., (*4)

'aliases' => array(
    'PushNotification' => 'Davibennun\LaravelPushNotification\Facades\PushNotification'
)

Configuration

Copy the config file into your project by running, (*5)

php artisan config:publish davibennun/laravel-push-notification

This will generate a config file like this, (*6)

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., (*7)

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:
//Path to the 'app' folder
'certificate'=>app_path().'/myCert.pem'

Laravel functions are also available public_path() storage_path() base_path(), (*8)

Usage


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:, (*9)

$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., (*10)

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., (*11)

The Versions

10/06 2015

dev-laravel5

dev-laravel5

Laravel package to send push notifications to mobile devices (apns, gcm,wpn,Blackberry)

  Sources   Download

The Requires

 

by Avatar DaviBenNun
by Avatar kirant400

laravel notification push gcm apns windows phone blackberry

09/06 2015

dev-master

9999999-dev

Laravel package to send push notifications to mobile devices (apns, gcm, wns, Blackberry)

  Sources   Download

The Requires

 

by Avatar DaviBenNun
by Avatar kirant400

laravel notification ios push gcm apns windows android blackberry wns