PHPackages                             wowo/wowo-queue-bundle - 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. wowo/wowo-queue-bundle

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

wowo/wowo-queue-bundle
======================

The WowoQueueBundle provides unified method for use queue systems, like Beanstalkd, RabbitMQ, flat files, database driven queues etc.

1.4.0(10y ago)2228.0k↓50%9[2 PRs](https://github.com/wowo/WowoQueueBundle/pulls)1MITPHP

Since Aug 1Pushed 2y ago3 watchersCompare

[ Source](https://github.com/wowo/WowoQueueBundle)[ Packagist](https://packagist.org/packages/wowo/wowo-queue-bundle)[ RSS](/packages/wowo-wowo-queue-bundle/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (1)Dependencies (3)Versions (10)Used By (1)

WowoQueueBundle
===============

[](#wowoqueuebundle)

[![Build Status](https://camo.githubusercontent.com/c2bf9586d1d3521ef2e27e488780d6dba54e20cbb2248d7cd5025695f5bd521c/68747470733a2f2f7365637572652e7472617669732d63692e6f72672f776f776f2f576f776f517565756542756e646c652e706e67)](https://secure.travis-ci.org/wowo/WowoQueueBundle)[![SensioLabsInsight](https://camo.githubusercontent.com/d5b0acf81bf541e0b4a842b1c140b2ee8161898c5e7a8832121b5fd94e169d18/68747470733a2f2f696e73696768742e73656e73696f6c6162732e636f6d2f70726f6a656374732f39626137666262332d633532612d343030332d613437372d3564633931393031323639372f6269672e706e67)](https://insight.sensiolabs.com/projects/9ba7fbb3-c52a-4003-a477-5dc919012697)

The WowoQueueBundle provides unified method for use queue systems, like Beanstalkd, RabbitMQ, flat files, database driven queues, etc. For now it only supports Beanstalkd, but you can add your own implementation on your own and send pull request.

Installation
------------

[](#installation)

### Step 1: Download WowoQueueBundle

[](#step-1-download-wowoqueuebundle)

#### If you are using Deps (Symfony 2.0.x)

[](#if-you-are-using-deps-symfony-20x)

Add following lines to your `deps` file:

```
    [WowoQueueBundle]
        git=git://github.com/wowo/WowoQueueBundle.git
        target=bundles/Wowo/QueueBundle

    [pheanstalk]
        git=https://github.com/pda/pheanstalk
        target=/pheanstalk
        version=v2.1.0

```

Now, run the vendors script to download the bundle:

```
$ php bin/vendors install
```

#### If you are using [Composer](http://getcomposer.org/) (Symfony &gt;= 2.1.x)

[](#if-you-are-using-composer-symfony--21x)

Add following lines to your `composer.json` requirements:

```
    "require": {
        "wowo/wowo-queue-bundle": "dev-master"
    }
```

Now, install the bundle with composer:

```
$ php composer.phar install
```

### Step 2: Configure the Autoloader

[](#step-2-configure-the-autoloader)

(You can jump to Step 3 if you are using composer)

Add the `Wowo` namespace to your autoloader:

```
