PHPackages                             ins0/php-pushover-sdk - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Mail &amp; Notifications](/categories/mail)
4. /
5. ins0/php-pushover-sdk

ActiveLibrary[Mail &amp; Notifications](/categories/mail)

ins0/php-pushover-sdk
=====================

Pushover.net API SDK to send Push Messages

07PHP

Since Aug 19Pushed 11y ago1 watchersCompare

[ Source](https://github.com/ins0/php-pushover-sdk)[ Packagist](https://packagist.org/packages/ins0/php-pushover-sdk)[ RSS](/packages/ins0-php-pushover-sdk/feed)WikiDiscussions master Synced 5d ago

READMEChangelogDependenciesVersions (1)Used By (0)

php-pushover-sdk
================

[](#php-pushover-sdk)

php implementation to send messages over pushover.net api

ToDo
----

[](#todo)

- make nice wiki/documentation
- add all unit tests
- add device specific link helper (Pushover/Api/Message/Link)
- add api friendly bulk requests
- get some feedback

Quick start
-----------

[](#quick-start)

### Install via Composer

[](#install-via-composer)

In the `require` key of `composer.json` file add the following

```
"ins0/php-pushover-sdk": "dev-master"

```

Run the Composer update command

```
$ composer update

```

### Examples

[](#examples)

```
$auth = new \Pushover\Api\Authentication\Token('YOUR_PUSHOVER_API_TOKEN');
$pushover = new \Pushover\Api($auth);

// test emergency push message
$message = new \Pushover\Api\Message\EmergencyMessage('FoBar Test Message', 'USER_TOKEN','DEVICE_NAME');
$message->setTimestamp(strtotime('-1 hour')); // 1 hour before
$message->setSound($message::SOUND_CASHREGISTER);

$result = $pushover->push($message);
if($result !== false)
{
    /** @var $response \Pushover\Api\Response\Response */
    $response = $pushover->getResponse();

    // get emergency receipt status
    $success = $pushover->getReceiptStatus($response->getReceipt());
    if( $success !== false )
    {
        /** @var $response \Pushover\Api\Response\ReceiptResponse */
        $receiptResponse = $pushover->getResponse();
        echo $receiptResponse->getAcknowledged();
    }
}

// bulk push
$messages = array();
$messages[] = new \Pushover\Api\Message\NormalMessage('bar', 'USER_TOKEN'); // push message on all user devices
$messages[] = new \Pushover\Api\Message\NormalMessage('baz', 'USER_TOKEN','DEVICE_NAME'); // push message on special user device

$results = $pushover->bulkPush($messages);
if( $result === false )
{
    // show failed push messages
    print_r($pushover->getErrors());

} else {

    // show response
    print_R($pushover->getResponseSet());
}

```

###  Health Score

20

—

LowBetter than 14% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

### Community

Maintainers

![](https://www.gravatar.com/avatar/f69ffb8f2e4ab27e7812c46cc00fa3fc221acf142ba49ddd3ada3f1f5a94aa3d?d=identicon)[ins0](/maintainers/ins0)

---

Top Contributors

[![ins0](https://avatars.githubusercontent.com/u/2622534?v=4)](https://github.com/ins0 "ins0 (5 commits)")

### Embed Badge

![Health badge](/badges/ins0-php-pushover-sdk/health.svg)

```
[![Health](https://phpackages.com/badges/ins0-php-pushover-sdk/health.svg)](https://phpackages.com/packages/ins0-php-pushover-sdk)
```

###  Alternatives

[tijsverkoyen/css-to-inline-styles

CssToInlineStyles is a class that enables you to convert HTML-pages/files into HTML-pages/files with inline styles. This is very useful when you're sending emails.

5.8k505.3M227](/packages/tijsverkoyen-css-to-inline-styles)[minishlink/web-push

Web Push library for PHP

1.9k12.0M53](/packages/minishlink-web-push)[laravel-notification-channels/twilio

Provides Twilio notification channel for Laravel

2587.7M12](/packages/laravel-notification-channels-twilio)[spatie/url-signer

Generate a url with an expiration date and signature to prevent unauthorized access

4422.3M16](/packages/spatie-url-signer)[mattketmo/email-checker

Throwaway email detection library

2742.0M5](/packages/mattketmo-email-checker)[laravel-notification-channels/discord

Laravel notification driver for Discord.

2371.3M11](/packages/laravel-notification-channels-discord)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
