PHPackages                             aporat/php\_gearman\_daemons - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Queues &amp; Workers](/categories/queues)
4. /
5. aporat/php\_gearman\_daemons

AbandonedArchivedLibrary[Queues &amp; Workers](/categories/queues)

aporat/php\_gearman\_daemons
============================

PHP Gearman Deamon Manager

1.0.0(13y ago)9105Apache-2.0PHPPHP &gt;=5.3

Since May 22Pushed 13y ago1 watchersCompare

[ Source](https://github.com/aporat/PHP-GearmanDaemons)[ Packagist](https://packagist.org/packages/aporat/php_gearman_daemons)[ Docs](https://github.com/aporat/PHP-GearmanDaemons)[ RSS](/packages/aporat-php-gearman-daemons/feed)WikiDiscussions master Synced 4w ago

READMEChangelogDependencies (5)Versions (2)Used By (0)

PHP Gearman Daemons Manager
===========================

[](#php-gearman-daemons-manager)

[![Build Status](https://camo.githubusercontent.com/f88fcdc91136d77d4937a05e79a76619857cecd2496c8da779b005ddaaac77e5/68747470733a2f2f7472617669732d63692e6f72672f61706f7261742f5048502d476561726d616e4461656d6f6e732e706e673f6272616e63683d6d6173746572)](https://travis-ci.org/aporat/PHP-GearmanDaemons) [![Dependency Status](https://camo.githubusercontent.com/223d9ddecc710ca2a088c5bdbb194890e95675c65e15bfea8439549a161e3ae9/68747470733a2f2f7777772e76657273696f6e6579652e636f6d2f757365722f70726f6a656374732f3531396430303766343765366238303030323031326163612f62616467652e706e67)](https://www.versioneye.com/user/projects/519d007f47e6b80002012aca) [![Coverage Status](https://camo.githubusercontent.com/6fd0c55267814a9237b41f64bdae047c9935b71491f4f7b4ad1d883669a2bff7/68747470733a2f2f636f766572616c6c732e696f2f7265706f732f61706f7261742f5048502d476561726d616e4461656d6f6e732f62616467652e706e67)](https://coveralls.io/r/aporat/PHP-GearmanDaemons)

The PHP Gearman Daemons Manager library allows running gearman workers as deamons using supervisord or using a built it php process manager. The library is framework independent and can be easily integrated into any project.

Requirements
------------

[](#requirements)

- PHP &gt;= 5.3

Getting Started
---------------

[](#getting-started)

The easiest way to work with this package is when it's installed as a Composer package inside your project. Composer isn't strictly required, but makes life a lot easier.

If you're not familiar with Composer, please see .

1. Add php\_gearman\_daemons to your application's composer.json.

    ```
     {
         ...
         "require": {
             "aporat/php_gearman_daemons": "dev-master"
         },
         ...
     }

    ```
2. Run `php composer install`.
3. If you haven't already, add the Composer autoload to your project's initialization file. (example)

    ```
     require 'vendor/autoload.php';

    ```

Quick Example
-------------

[](#quick-example)

```
