Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 499 Bytes

README.md

File metadata and controls

34 lines (23 loc) · 499 Bytes

Ionic push php sdk

This package may be helpful for sending ionic push notifications

Install

Via Composer

$ composer require dmitrovskiy/ionic-push-php

Usage

$pusher = new Dmitrovskiy\IonicPush\PushProcessor(
    'PROFILE',
    'AUTHORIZATION_TOKEN'
);

$devices = array(
    //...
);

$notification = array(
    //...
);

$pusher->notify($devices, $notification);

License

The MIT License (MIT). Please see License File for more information.