library pushover
A simple library to interact with the Pushover.com API
clicksco/pushover
A simple library to interact with the Pushover.com API
- Monday, October 28, 2013
- by mcraz
- Repository
- 1 Watchers
- 1 Stars
- 8 Installations
- PHP
- 0 Dependents
- 0 Suggesters
- 1 Forks
- 1 Open issues
- 2 Versions
- 0 % Grown
, (*1)
Requirements
Once you've been registered and after having installed the mobile application,
click this link to create your own API application
and get back your personal token/key., (*2)
Example
``` php
<?php, (*3)
use Clicksco\Pushover\PushMessage;
use Clicksco\Pushover\PushManager;, (*4)
$push_message = new PushMessage;
$push_message->setTitle('This is the title');
$push_message->setDate(new \DateTime());
$push_message->setMessage('This is the message');, (*5)
$push_manager = new PushManager('YOUR-APP-TOKEN');, (*6)
$push_manager->setMessage($push_message);
$push_manager->addUser('YOUR-USER-TOKEN');
echo $push_manager->send();
```, (*7)
dev-master
9999999-dev
A simple library to interact with the Pushover.com API
Sources
Download
The Requires
laravel
push
notifications
pushover
1.0.0
1.0.0.0
A simple library to interact with the Pushover.com API
Sources
Download
The Requires
laravel
push
notifications
pushover