jildertmiedema/windows-phone-push

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

Windows Phone Push

Maintainers

Package info

github.com/jildertmiedema/windows-phone-push

pkg:composer/jildertmiedema/windows-phone-push

Statistics

Installs: 9 078

Dependents: 0

Suggesters: 0

Stars: 3

Open Issues: 0

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)
}