Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/jrschumacher/silex-provider-thunderpush
- Owner: jrschumacher
- License: mit
- Created: 2014-04-10T20:20:34.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-04-10T20:20:50.000Z (over 10 years ago)
- Last Synced: 2024-10-09T22:22:58.580Z (about 1 month ago)
- Language: PHP
- Size: 105 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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"
}
}
```