Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 254 Bytes

README.md

File metadata and controls

15 lines (12 loc) · 254 Bytes

Simplepushio

Basic interface for https://simplepush.io/ API

<?php
$Simplepush = new Simplepushio\Api('mykey');

try {
    $Simplepush->sendRequest(['msg' => 'Test']);
    echo "Sent!";
} catch (Exception $e) {
    echo $e->getMessage();
}