PHPackages                             notifyme/laravel - 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. notifyme/laravel

ActiveLibrary

notifyme/laravel
================

Official Laravel client for the NotifyMe event → push API

v1.0.0(yesterday)04↑2900%MITPHP ^8.2

Since Jul 19Compare

[ Source](https://github.com/vaporinua-vg/notifyme-laravel)[ Packagist](https://packagist.org/packages/notifyme/laravel)[ RSS](/packages/notifyme-laravel/feed)WikiDiscussions Synced today

READMEChangelog (1)Dependencies (4)Versions (2)Used By (0)

NotifyMe Laravel SDK
====================

[](#notifyme-laravel-sdk)

Official Laravel client for [NotifyMe](https://test.upfine.app/) — send events from your app and deliver them as iOS push notifications.

**Packagist:** [notifyme/laravel](https://packagist.org/packages/notifyme/laravel)
**GitHub:** [vaporinua-vg/notifyme-laravel](https://github.com/vaporinua-vg/notifyme-laravel)

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

[](#requirements)

- PHP 8.2+
- Laravel 11 / 12 / 13

Install
-------

[](#install)

```
composer require notifyme/laravel
php artisan vendor:publish --tag=notifyme-config
```

Configure
---------

[](#configure)

```
NOTIFYME_BASE_URL=https://test.upfine.app
NOTIFYME_API_KEY=nm_xxxxxxxx
NOTIFYME_API_SECRET=nms_xxxxxxxx
```

Get both values in the NotifyMe dashboard → Project. The **secret is shown only once**.

Usage
-----

[](#usage)

```
use NotifyMe\Laravel\Facades\NotifyMe;

NotifyMe::event('order.created')
    ->title('New order')
    ->message('Order #1234 received')
    ->priority('high')
    ->data([
        'order_id' => ['label' => 'Order number', 'value' => 1234],
        'amount' => ['label' => 'Total', 'value' => '59€'],
    ])
    ->send();
```

Or with a plain array:

```
NotifyMe::send([
    'event' => 'order.created',
    'title' => 'New order',
    'message' => 'Order #1234 received',
    'priority' => 'high',
    'data' => [
        'order_id' => 1234,
    ],
]);
```

Response:

```
['success' => true, 'event_id' => '...']
```

On HTTP errors the client throws `NotifyMe\Laravel\Exceptions\NotifyMeException`.

Security
--------

[](#security)

- Never put `NOTIFYME_API_SECRET` in the frontend or git.
- Use server-side code only (jobs, listeners, controllers).
- Rotate credentials in the dashboard if leaked.

Auth headers (what the package sends)
-------------------------------------

[](#auth-headers-what-the-package-sends)

```
Authorization: Bearer
X-NotifyMe-Secret:
Content-Type: application/json

```

License
-------

[](#license)

MIT

###  Health Score

40

—

FairBetter than 86% of packages

Maintenance100

Actively maintained with recent releases

Popularity5

Limited adoption so far

Community2

Small or concentrated contributor base

Maturity45

Maturing project, gaining track record

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

1d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/516bd8eeefc6401f370338db70dcecbc570403f2f68a697a0d6a635ff5842c0c?d=identicon)[vaporinua-vg](/maintainers/vaporinua-vg)

---

Tags

laravelpusheventsnotificationsnotifyme

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/notifyme-laravel/health.svg)

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

###  Alternatives

[psalm/plugin-laravel

Psalm plugin for Laravel

3345.3M347](/packages/psalm-plugin-laravel)[laravel/mcp

Rapidly build MCP servers for your Laravel applications.

77022.3M180](/packages/laravel-mcp)[api-platform/laravel

API Platform support for Laravel

58174.6k17](/packages/api-platform-laravel)

PHPackages © 2026

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