PHPackages                             artdarek/pusherer - 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. artdarek/pusherer

ActiveLibrary

artdarek/pusherer
=================

Pusher.com service provider for Laravel 4.

1.0.2(10y ago)4889.0k↓50%13[6 issues](https://github.com/artdarek/pusherer/issues)MITPHPPHP &gt;=5.3.0

Since Sep 11Pushed 10y ago2 watchersCompare

[ Source](https://github.com/artdarek/pusherer)[ Packagist](https://packagist.org/packages/artdarek/pusherer)[ Docs](https://github.com/artdarek/pusherer)[ RSS](/packages/artdarek-pusherer/feed)WikiDiscussions master Synced 1mo ago

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

Pusherer - Laravel 4 Service Provider
=====================================

[](#pusherer---laravel-4-service-provider)

Pusherer is a simple Pusher.com service provider for Laravel 4. [Pusher](http://pusher.com/) ([Documentation](http://pusher.com/docs)) is a simple hosted API for adding realtime bi-directional functionality via WebSockets to web and mobile apps, or any other Internet connected device.

---

- [Installation](#installation)
- [Registering the Package](#registering-the-package)
- [Configuration](#Configuration)
- [Usage](#usage)

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

[](#installation)

Add Pusherer to your composer.json file:

```
"require": {
	"artdarek/pusherer": "1.0.*"
}

```

Use [composer](http://getcomposer.org) to install this package.

```
$ composer update

```

### Registering the Package

[](#registering-the-package)

Add the Pusherer Service Provider to your config in `app/config/app.php`:

```
'providers' => array(
	'Artdarek\Pusherer\PushererServiceProvider'
),
```

### Configuration

[](#configuration)

Run on the command line from the root of your project:

```
$ php artisan config:publish artdarek/pusherer

```

Set your pusher.com credentials in `app/config/packages/artdarek/pusherer/config.php`

```
return array(

	/**
	 * App id
	 */
	'app_id' => '',

	/**
	 * App key
	 */
	'key' => '',

	/**
	 * App Secret
	 */
	'secret' => ''

);
```

If you have not a Pusher account, just [sign up](https://app.pusherapp.com/accounts/sign_up) to get your API key, App Id and Secret.

### Usage

[](#usage)

```
/**
 * Add notification
 *
 * @return Void
 */
public function index() {

	// Send notification to Pusher
	$message = "This is just an example message!";
	Pusherer::trigger('my-channel', 'my-event', array( 'message' => $message ));

}
```

###  Health Score

37

—

LowBetter than 82% of packages

Maintenance18

Infrequent updates — may be unmaintained

Popularity41

Moderate usage in the ecosystem

Community16

Small or concentrated contributor base

Maturity60

Established project with proven stability

 Bus Factor1

Top contributor holds 67.7% 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 ~388 days

Total

3

Last Release

3848d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/98c27704daccc4dc6d490ba8c1a2c0bd5e86898ef589418036f3a608a08bd081?d=identicon)[artdarek](/maintainers/artdarek)

---

Top Contributors

[![artdarek](https://avatars.githubusercontent.com/u/1362351?v=4)](https://github.com/artdarek "artdarek (21 commits)")[![gpedro](https://avatars.githubusercontent.com/u/2898638?v=4)](https://github.com/gpedro "gpedro (5 commits)")[![code2prog](https://avatars.githubusercontent.com/u/22845213?v=4)](https://github.com/code2prog "code2prog (3 commits)")[![melbourne2991](https://avatars.githubusercontent.com/u/4619280?v=4)](https://github.com/melbourne2991 "melbourne2991 (2 commits)")

---

Tags

laravelnotificationspusherrealtimeLaravel 4laravel4Pusher.com

### Embed Badge

![Health badge](/badges/artdarek-pusherer/health.svg)

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

###  Alternatives

[munafio/chatify

A package for Laravel PHP Framework to add a complete real-time chat system.

2.4k441.9k2](/packages/munafio-chatify)[pusher/pusher-http-laravel

\[DEPRECATED\] A Pusher bridge for Laravel

400509.0k3](/packages/pusher-pusher-http-laravel)

PHPackages © 2026

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