scottymeuk/pushover
This package is abandoned and no longer maintained.
No replacement package was suggested.
Simple pushover.net library
Maintainers
v1.0.1
2013-08-15 11:54 UTC
Requires
- php: >=5.3.3
- ext-curl: *
Requires (Dev)
None
Suggests
None
Provides
None
Conflicts
None
Replaces
None
MIT 34035b716478d76c9f79015991fb33d4c5dd7d4a
- Scott Robertson <scottymeuk.woop@gmail.com>
This package is not auto-updated.
Last update: 2026-04-06 21:16:28 UTC
README
👁 Build Status
👁 Total Downloads
👁 Version
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 include __DIR__ . '/vendor/autoload.php'; $pushover = new \Scottymeuk\Pushover\Client([ 'token' => '', ]); $pushover->message = 'testing'; // Push Single $push = $pushover->push($token); // Push Multiple $push = $pushover->pushMultiple([ $token1, $token2 ]);
