Windows Phone Push
This code is based on the code of Rudy HUYN.
<?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)
}