dev-master
9999999-deva GearmanClient wrapper for Laravel 4
MIT
The Requires
- php >=5.3.0
- illuminate/support 4.*
by Bar Ziony
a GearmanClient wrapper for Laravel 4
Gearman-L4 is a GearmanClient (PECL extension) wrapper for Laravel 4. It does not add functionality and only exposes the native GearmanClient instance from the PECL extension to the Laravel application., (*1)
Add photomania/gearman-l4
as a requirement to composer.json:, (*2)
{ "require": { "photomania/gearman-l4": "dev-master" } }
And then run composer update photomania/gearman-l4
., (*3)
Once Composer has installed the packages it needs, you need to register Gearman-L4 with your Laravel application.
Open up app/config/app.php
, find the providers
key and add:, (*4)
'Photomania\GearmanL4\GearmanL4ServiceProvider'
You can alter configuration options (such as server hostnames and ports) by publishing the config file., (*5)
php artisan config:publish photomania/gearman-l4
This will copy the default configuration file to app/config/packages/photomania/gearman-l4/config.php
., (*6)
a GearmanClient wrapper for Laravel 4
MIT