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

ActiveSymfony-bundle[Queues &amp; Workers](/categories/queues)

aureja/job-queue-bundle
=======================

v0.1.1(9y ago)018.3k2[1 issues](https://github.com/Aureja/JobQueueBundle/issues)[1 PRs](https://github.com/Aureja/JobQueueBundle/pulls)MITPHPPHP &gt;=5.4

Since Apr 21Pushed 9y ago1 watchersCompare

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

READMEChangelogDependencies (3)Versions (4)Used By (0)

JobQueueBundle
==============

[](#jobqueuebundle)

Symfony bundle using [Aureja/JobQueue](https://github.com/Aureja/JobQueue) for job queues management.

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

[](#installation)

**Step 1**. Install via [Composer](https://getcomposer.org/)

```
composer require aureja/job-queue-bundle "dev-master"

```

**Step 2**. Add to `AppKernel.php`

```
class AppKernel extends Kernel
{
    /**
     * {@inheritdoc}
     */
    public function registerBundles()
    {
        $bundles = [
             // ...
             new Aureja\Bundle\JobQueueBundle\AurejaJobQueueBundle(),
             // ...
        ];
    }
}
```

**Step 3**. Define your entities by extending Aureja models or implementing the interfaces

```
