ZfrPusherModule is a Zend Framework 2 module that integrates with ZfrPusher
- PHP 5.3
- Zend Framework 2
- ZfrPusher
Add "zfr/zfr-pusher-module" to your composer.json file and update your dependencies:
{
"require": {
"zfr/zfr-pusher-module": "1.*"
}
}
Enable ZfrPusherModule in your application.config.php
, then copy-paste the file zfr_pusher.local.php.dist
(that
you can find in the config
folder of the module) to your autoload
folder (don't forget to remove the .dist at
the end!).
The module registers the PusherClient and PusherService to the ZF 2 service manager. You can therefore get them like this:
// If you want to client:
$pusherClient = $serviceManager->get('ZfrPusher\Client\PusherClient');
// If you want the service:
$pusherService = $serviceManager->get('ZfrPusher\Service\PusherService');
For more information, please refer to the documentation of ZfrPusher to how to use them.