Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/scottrobertson/pushover
A simple PHP library for pushover.net
https://github.com/scottrobertson/pushover
Last synced: 21 days ago
JSON representation
A simple PHP library for pushover.net
- Host: GitHub
- URL: https://github.com/scottrobertson/pushover
- Owner: scottrobertson
- License: mit
- Created: 2013-08-14T18:20:13.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-09-25T14:39:32.000Z (about 11 years ago)
- Last Synced: 2024-10-12T02:29:25.526Z (about 1 month ago)
- Language: PHP
- Homepage:
- Size: 191 KB
- Stars: 7
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Pushover
========[![Build Status](https://travis-ci.org/scottrobertson/pushover.png?branch=master)](https://travis-ci.org/scottrobertson/pushover)
[![Total Downloads](https://poser.pugx.org/scottymeuk/pushover/d/total.png)](https://packagist.org/packages/scottymeuk/pushover)
[![Version](https://poser.pugx.org/scottymeuk/pushover/version.png)](https://packagist.org/packages/scottymeuk/pushover)A simple PHP library for pushover.net. It essentially just wraps curl, and makes it a bit easier to send push notifications. The main reason for building this was to allow pushing to mulitple users easily.
## Requirements
- PHP >= 5.3.3
- Curl PHP Driver## Example
```php
'',
]);
$pushover->message = 'testing';// Push Single
$push = $pushover->push($token);// Push Multiple
$push = $pushover->pushMultiple([
$token1,
$token2
]);
```[![Bitdeli Badge](https://d2weczhvl823v0.cloudfront.net/scottrobertson/pushover/trend.png)](https://bitdeli.com/free "Bitdeli Badge")