Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/jrschumacher/silex-provider-thunderpush

Thunderpush service provider for silex micro-framework. Check here: https://github.com/thunderpush/php-thunderclient
https://github.com/jrschumacher/silex-provider-thunderpush

Last synced: about 3 hours ago
JSON representation

Thunderpush service provider for silex micro-framework. Check here: https://github.com/thunderpush/php-thunderclient

Awesome Lists containing this project

README

        

Thunderpush Silex Provider
================================

Thunderpush service provider for silex micro-framework. Check here: https://github.com/thunderpush/php-thunderclient

Example
=======

``` php
register(new ThunderpushServiceProvider(), array(
"thunderpush.host" => $host,
"thunderpush.port" => $port,
"thunderpush.key" => $key,
"thunderpush.secret" => $secret
));
$tp = $app['thunderpush'];
$tp->get_user_count();
```

Install with Composer
=====================

``` js
{
require: {
"jrschumacher/silex-provider-thunderpush": "dev-master"
}
}
```