Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

History

28 Commits

Repository files navigation

Pusherer - Laravel 4 Service Provider

Pusherer is a simple Pusher.com service provider for Laravel 4. Pusher (Documentation) 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

Add Pusherer to your composer.json file:

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

Use composer to install this package.

$ composer update

Registering the Package

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

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

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

returnarray( /** * App id */'app_id' => '', /** * App key */'key' => '',
/** * App Secret */'secret' => '' );

If you have not a Pusher account, just sign up to get your API key, App Id and Secret.

Usage

/** * Add notification * * @return Void */publicfunctionindex() {
// Send notification to Pusher$message = "This is just an example message!";
Pusherer::trigger('my-channel', 'my-event', array( 'message' => $message ));
}

About

Pusher Service Provider for Laravel 4.

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages