PHPackages                             codeliter/expo-notification-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. codeliter/expo-notification-pusher

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

codeliter/expo-notification-pusher
==================================

Send push notifications from your backend to an expo app

1.0.0(6y ago)122MITPHPCI failing

Since Jun 12Pushed 6y ago1 watchersCompare

[ Source](https://github.com/codeliter/expo-notification-pusher)[ Packagist](https://packagist.org/packages/codeliter/expo-notification-pusher)[ RSS](/packages/codeliter-expo-notification-pusher/feed)WikiDiscussions master Synced today

READMEChangelogDependencies (3)Versions (2)Used By (0)

expo-notification-pusher
========================

[](#expo-notification-pusher)

This is a utility library that makes sending push notifications from your server to your expo app easily.

Features
--------

[](#features)

- Send notifications to specific channels (Android only).
- Smart sending of push notifications to different expo projects.
- Auto batching of push notification if receivers are more than the recommended 100.

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

[](#requirements)

- PHP 7.1+
- [Unirest-php](https://packagist.org/packages/mashape/unirest-php)

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

[](#installation)

### Using Composer

[](#using-composer)

To install expo-notification-pusher with Composer, add the following to your composer.json file:

```
{
    "require": {
        "codeliter/expo-notification-pusher": "1.*"
    }
}

```

or by running the following command:

```
composer require codeliter/expo-notification-pusher

```

- Install from source Clone the repository by running the following command:

```
git clone https://github.com/codeliter/expo-notification-pusher.git

```

At the top of your code add:

```
require_once '/path/to/expo-notification-pusher/src/Expo/PushNotification.php';

```

Usage
-----

[](#usage)

### Sending a basic Push

[](#sending-a-basic-push)

```
$send = PushNotification::send(['ExponentPushToken[oj4iK4CRA7Ry8gDCrtawef]'], 'Test','Test body');

```

- The first argument must be an array of valid expo tokens. E.g `['ExponentPushToken[oj4iK4CRA7Ry8gDCrtawef]']`
- The Second argument is the title of the push. This is required.
- The Third argument is the body of the push. This is required.

### Sending a standard push

[](#sending-a-standard-push)

```
// The channel we want this notification to be pushed to (Android Only). This allows for grouping of notifications.
// The channel must have been initialized inside the expo app already.
$channel = "notifications";

// This contains data we need inside the app to move the user to a specific screen or handle some other things.
$data  = [
    "intent"=>'notification',
    'type'=>'chat',
    'message'=>'Hello'
];

$send = PushNotification::send(['ExponentPushToken[oj4iK4CRA7Ry8gDCrtawef]'], 'Test','Test body', $channel, $data);

```

Made with ♥ from [**Codeliter**](https://github.com/codeliter)

###  Health Score

25

—

LowBetter than 35% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity56

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

2211d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/20014433?v=4)[Stephen Abolarin](/maintainers/codeliter)[@codeliter](https://github.com/codeliter)

---

Top Contributors

[![codeliter](https://avatars.githubusercontent.com/u/20014433?v=4)](https://github.com/codeliter "codeliter (3 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/codeliter-expo-notification-pusher/health.svg)

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

###  Alternatives

[maize-tech/laravel-email-domain-rule

Laravel Email Domain Rule

612.0k](/packages/maize-tech-laravel-email-domain-rule)[sarfraznawaz2005/noty

Laravel package to incorporate noty flash notifications into laravel.

324.5k](/packages/sarfraznawaz2005-noty)

PHPackages © 2026

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