jildertmiedema/windows-phone-push

This package is abandoned and no longer maintained. No replacement package was suggested.

Windows Phone Push

0.0.1 2014-08-07 09:19 UTC

This package is auto-updated.

Last update: 2021-06-11 13:37:05 UTC


README

Windows Phone Push

This code is based on the code of Rudy HUYN.

example

<?php
require_once 'vendor/autoload.php';

try {
    $uri = "{the uri}";

    $notifier = new JildertMiedema\WindowsPhone\WindowsPhonePushNotification();
    $result = $notifier->pushToast($uri, "Test app", "Test message");

    var_dump($result);
} catch (Exception $e) {
    var_dump($e)
}