PHPackages                             rdcstarr/superpower-broadcasting - 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. [API Development](/categories/api)
4. /
5. rdcstarr/superpower-broadcasting

AbandonedArchivedLibrary[API Development](/categories/api)

rdcstarr/superpower-broadcasting
================================

UI realtime broadcasting for Laravel + Livewire. UiEvent + UserChannelEvent broadcast classes and the #\[OnUi\] attribute for Livewire computed properties.

v0.1.2(1mo ago)01MITPHPPHP ^8.3

Since May 27Pushed 1mo agoCompare

[ Source](https://github.com/rdcstarr/superpower-broadcasting)[ Packagist](https://packagist.org/packages/rdcstarr/superpower-broadcasting)[ RSS](/packages/rdcstarr-superpower-broadcasting/feed)WikiDiscussions main Synced 1w ago

READMEChangelog (3)Dependencies (10)Versions (4)Used By (0)

superpower-broadcasting
=======================

[](#superpower-broadcasting)

UI realtime broadcasting primitives for Laravel + Livewire. Provides `UiEvent` (global / scoped channel broadcasts) and `UserChannelEvent` for per-user `user.{id}` channels, plus the `#[OnUi]` attribute that wires Livewire `#[Computed]` properties to broadcast events without manual Echo plumbing.

Install
-------

[](#install)

```
composer require rdcstarr/superpower-broadcasting

```

Requires `BROADCAST_CONNECTION=reverb` (or another Pusher-compatible driver) and Livewire 4+ with the Echo plugin enabled.

Usage
-----

[](#usage)

Dispatch from an Action:

```
use Rdcstarr\SuperpowerBroadcasting\Events\UiEvent;

UiEvent::toModel($user, 'tickets', [
    'entity' => 'ticket',
    'action' => 'created',
    'id'     => $ticket->id,
]);
```

Listen in a Livewire component via the `#[OnUi]` attribute:

```
use Livewire\Attributes\Computed;
use Rdcstarr\SuperpowerBroadcasting\Attributes\OnUi;
use App\Models\User;

#[Computed]
#[OnUi('tickets', User::class)]
public function unreadCount(): int
{
    return auth()->user()->tickets()->where('is_read', false)->count();
}
```

Personal toolkit — no support guarantees.

###  Health Score

36

—

LowBetter than 79% of packages

Maintenance88

Actively maintained with recent releases

Popularity1

Limited adoption so far

Community6

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.

###  Release Activity

Cadence

Every ~0 days

Total

3

Last Release

58d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/42062586?v=4)[rdcstarr](/maintainers/rdcstarr)[@rdcstarr](https://github.com/rdcstarr)

---

Top Contributors

[![rdcstarr](https://avatars.githubusercontent.com/u/42062586?v=4)](https://github.com/rdcstarr "rdcstarr (6 commits)")

###  Code Quality

TestsPest

### Embed Badge

![Health badge](/badges/rdcstarr-superpower-broadcasting/health.svg)

```
[![Health](https://phpackages.com/badges/rdcstarr-superpower-broadcasting/health.svg)](https://phpackages.com/packages/rdcstarr-superpower-broadcasting)
```

###  Alternatives

[laravel/pulse

Laravel Pulse is a real-time application performance monitoring tool and dashboard for your Laravel application.

1.7k15.1M136](/packages/laravel-pulse)[psalm/plugin-laravel

Psalm plugin for Laravel

3345.3M347](/packages/psalm-plugin-laravel)[simplestats-io/laravel-client

Server-side analytics for Laravel that follows the full funnel from visit to registration to payment, attributed to the channel that drove it. Revenue, MRR, churn and ad-spend profit (ROAS/CAC) per channel. GDPR compliant, ad-blocker proof.

5022.6k](/packages/simplestats-io-laravel-client)[illuminate/notifications

The Illuminate Notifications package.

483.1M1.2k](/packages/illuminate-notifications)[defstudio/telegraph

A laravel facade to interact with Telegram Bots

813336.8k3](/packages/defstudio-telegraph)[tallstackui/tallstackui

TallStackUI is a powerful suite of Blade components that elevate your workflow of Livewire applications.

728176.2k14](/packages/tallstackui-tallstackui)

PHPackages © 2026

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