PHPackages                             navvygator/pusher - 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. navvygator/pusher

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

navvygator/pusher
=================

PHP push notifications to APNS, FCM fork from mxp100/pusher by Yuriy Potemkin

1.1(8y ago)020Apache-2.0PHPPHP ^7.0

Since Mar 21Pushed 8y agoCompare

[ Source](https://github.com/navvygator/Pusher)[ Packagist](https://packagist.org/packages/navvygator/pusher)[ RSS](/packages/navvygator-pusher/feed)WikiDiscussions master Synced 2w ago

READMEChangelog (1)DependenciesVersions (5)Used By (0)

Pusher
======

[](#pusher)

Compatable: PHP 7+

Installation
------------

[](#installation)

### Composer

[](#composer)

`composer require mxp100/pusher`

### APNS certicates generate

[](#apns-certicates-generate)

Please see Wiki:

Examples
--------

[](#examples)

Example for FCM:

```
$serverKey = '[server key]';
$deviceId = '[device token]';

$devices = new DeviceCollection([new Device($deviceId)]);
$message = new Message('This is a test message');

$adapter = new Fcm($serverKey);

$pusher = new Pusher([new Push($adapter, $devices, $message)]);
$pusher->push();
```

Example for GCM:

```
$serverKey = '[path to certification]';
$deviceId = '[device token]';

$devices = new DeviceCollection([new Device($deviceId)]);
$message = new Message('This is a test message');

$adapter = new Gcm($serverKey, AdapterInterface::ENVIRONMENT_DEVELOPMENT);

$pusher = new Pusher([new Push($adapter, $devices, $message)]);
$pusher->push();
```

Example for APNS:

```
$serverKey = '[path to certification]';
$deviceId = '[device token]';

$devices = new DeviceCollection([new Device($deviceId)]);
$message = new Message('This is a test message');

$adapter = new Apns($serverKey, AdapterInterface::ENVIRONMENT_DEVELOPMENT);

$pusher = new Pusher([new Push($adapter, $devices, $message)]);
$pusher->push();
```

###  Health Score

26

—

LowBetter than 41% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity61

Established project with proven stability

 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

Every ~121 days

Total

3

Last Release

3145d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/10019686?v=4)[Mikhail Mazein](/maintainers/navvygator)[@navvygator](https://github.com/navvygator)

---

Top Contributors

[![mxp100](https://avatars.githubusercontent.com/u/8124083?v=4)](https://github.com/mxp100 "mxp100 (14 commits)")

---

Tags

pushnotificationsFCMapns

### Embed Badge

![Health badge](/badges/navvygator-pusher/health.svg)

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

###  Alternatives

[minishlink/web-push

Web Push library for PHP

1.9k13.4M70](/packages/minishlink-web-push)[bentools/webpush-bundle

Send push notifications through Web Push Protocol to your Symfony users.

72285.7k](/packages/bentools-webpush-bundle)[mcfedr/awspushbundle

A set of services to simplify using Aws to send push notifications

40382.7k1](/packages/mcfedr-awspushbundle)[dmitrovskiy/ionic-push-php

ionic push notifications php sdk

215.5k1](/packages/dmitrovskiy-ionic-push-php)

PHPackages © 2026

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