PHPackages                             zerifas/pushover - 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. zerifas/pushover

ActiveLibrary

zerifas/pushover
================

Pushover Notifications

0.0.1(11y ago)06MITPHP

Since Jul 3Pushed 11y agoCompare

[ Source](https://github.com/Drarok/Pushover)[ Packagist](https://packagist.org/packages/zerifas/pushover)[ Docs](http://github.com/drarok/Pushover)[ RSS](/packages/zerifas-pushover/feed)WikiDiscussions develop Synced 1w ago

READMEChangelogDependenciesVersions (3)Used By (0)

About
=====

[](#about)

Pushover makes it easy to get real-time notifications on your Android device, iPhone, iPad, and Desktop.

This simple PHP library allows you to utilise Pushover from your PHP code.

Features
--------

[](#features)

- Supports full API feature set (including notification priority).
- Requires only curl extension.
- PSR-2 standard adherence.

Requirements
------------

[](#requirements)

- PHP ~5.3
- curl extension

Usage
-----

[](#usage)

At its simplest, you create a connection, and pass Notification objects and the user token:

```
$pushover = new Zerifas\Pushover\Connection($applicationToken);
$notification = new Zerifas\Pushover\Notification('Hello, world!');
$success = $pushover->notifyUser($notification, $userToken);
```

You may also want to omit the user token passed to notifyUser if you're only delivering to one user:

```
$pushover = new Zerifas\Pushover\Connection($applicationToken, $userToken);
$notification = new Zerifas\Pushover\Notification('Hello, world!');
$success = $pushover->notifyUser($notification);
```

The `Notification` class supports all the options defined in the [API](https://pushover.net/api), and a fluent interface.

```
$pushover = new Zerifas\Pushover\Connection($applicationToken, $userToken);

$notification = new Zerifas\Pushover\Notification('Hello, world!');
$notification->setTitle('Title')
    ->setUrl('http://www.pushover.net/')
    ->setUrlTitle('Pushover')
    ->setPriority(Zerifas\Pushover\Notification::PRIORITY_QUIET)
    ->setTimestamp(time())
    ->setSound('cosmic')
;
$success = $pushover->notifyUser($notification);
```

You can also get the status code and response as an array if required:

```
$pushover = new Zerifas\Pushover\Connection($applicationToken, $userToken);
$notification = new Zerifas\Pushover\Notification('Hello, world!');
$success = $pushover->notifyUser($notification);
$statusCode = $pushover->getLastStatusCode();
$response = $pushover->getLastResponse();
$requestId = $response['request'];
$errors = $response['errors'];
```

###  Health Score

23

—

LowBetter than 27% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity54

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.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

4337d ago

### Community

Maintainers

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

---

Top Contributors

[![Drarok](https://avatars.githubusercontent.com/u/55830?v=4)](https://github.com/Drarok "Drarok (12 commits)")

### Embed Badge

![Health badge](/badges/zerifas-pushover/health.svg)

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

PHPackages © 2026

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