Skip to content
This repository has been archived by the owner on Apr 10, 2021. It is now read-only.

Snider/php-notifyMyAndroid

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SensioLabsInsight

snider/php-notify-my-android

This is a PHP library for NotifyMyAndroid.com that does not require curl.

If you find a bug, or think of an improvement, please fork the repository and submit a pull request.

I have had a nexus 5 since it came out and am now actually using the lib. If I find any improvements, I can test them myself. :) Yay!

Usage

A basic approach at using this package could look like this:

<?php
namespace snider\NotifyMyAndroid;

require_once realpath(__DIR__ . '/vendor') . '/autoload.php';

$apiKey      = 'insertYourApiKeyHere';
$application = 'snider/php-notify-my-android';
$event       = 'Sample Event';
$description = 'This is a sample event notification.';

$nma = new Api(array('apikey' => $apiKey));
if ($nma->verify()) {
    if ($nma->notify($application, $event, $description)) {
        echo 'Notification sent';
    }
}

Use the included sample.php to try it for yourself.

License

See LICENSE.txt for full license details.