An open API service indexing awesome lists of open source software.

https://github.com/fvdm/pusher-php

PHP function for Pusherapp.com
https://github.com/fvdm/pusher-php

Last synced: 10 months ago
JSON representation

PHP function for Pusherapp.com

Awesome Lists containing this project

README

          

### Pusher-PHP

At the moment there is only one file _pusher.php_ to send messages to your [Pusher](http://pusher.com/) app from a PHP script.

Just require it and do like this:

```php
'1234',
'authKey' => 'f843j838v49',
'authSecret' => '2kh4s9dv1e',
'channel' => 'chat',
'event' => 'user_text',
'fields' => array(
'username' => 'johndoe',
'time' => date( 'H:i:s' ),
'text' => 'hello world'
)
));
?>```