jildertmiedema/windows-phone-push

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

Windows Phone Push

Installs: 9 078

Dependents: 0

Suggesters: 0

Security: 0

Stars: 3

Watchers: 1

Forks: 1

Open Issues: 0

pkg:composer/jildertmiedema/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)
}