PHPackages                             mcfedr/queue-driver-pheanstalk-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. mcfedr/queue-driver-pheanstalk-bundle

Abandoned → [mcfedr/beanstalk-queue-driver-bundle](/?search=mcfedr%2Fbeanstalk-queue-driver-bundle)Symfony-bundle[Queues &amp; Workers](/categories/queues)

mcfedr/queue-driver-pheanstalk-bundle
=====================================

A bundle for managing job queues

3.2.0(8y ago)1411MITPHPPHP &gt;=5.5

Since Mar 21Pushed 8y ago1 watchersCompare

[ Source](https://github.com/mcfedr/beanstalk-queue-driver-bundle)[ Packagist](https://packagist.org/packages/mcfedr/queue-driver-pheanstalk-bundle)[ RSS](/packages/mcfedr-queue-driver-pheanstalk-bundle/feed)WikiDiscussions master Synced yesterday

READMEChangelogDependencies (6)Versions (26)Used By (1)

Beanstalk Queue Driver Bundle
=============================

[](#beanstalk-queue-driver-bundle)

A driver for [Queue Manager Bundle](https://github.com/mcfedr/queue-manager-bundle) that uses beanstalkd

[![Latest Stable Version](https://camo.githubusercontent.com/9c2628d2257ee918ccab9c9d84b0c8815f783f6241e9865da94aa827d329e658/68747470733a2f2f706f7365722e707567782e6f72672f6d63666564722f6265616e7374616c6b2d71756575652d6472697665722d62756e646c652f762f737461626c652e706e67)](https://packagist.org/packages/mcfedr/beanstalk-queue-driver-bundle)[![License](https://camo.githubusercontent.com/ff523973602359dd2c9c44d1742dd2057f581a5a3a9b7733772c08dcd3a5f085/68747470733a2f2f706f7365722e707567782e6f72672f6d63666564722f6265616e7374616c6b2d71756575652d6472697665722d62756e646c652f6c6963656e73652e706e67)](https://packagist.org/packages/mcfedr/beanstalk-queue-driver-bundle)[![Build Status](https://camo.githubusercontent.com/fb4ec28f223ef2961aabb1fb46a3b66209df99f2b0a03ff146da98327ca1ffca/68747470733a2f2f7472617669732d63692e6f72672f6d63666564722f6265616e7374616c6b2d71756575652d6472697665722d62756e646c652e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/mcfedr/beanstalk-queue-driver-bundle)

Usage
-----

[](#usage)

The beanstalk runner is a Symfony command. You can runner multiple instances if you need to handle higher numbers of jobs.

```
./bin/console mcfedr:queue:{name}-runner
```

Where `{name}` is what you used in the config. Add `-v` or more to get detailed logs.

Install
-------

[](#install)

### Composer

[](#composer)

```
php composer.phar require mcfedr/beanstalk-queue-driver-bundle

```

### AppKernel

[](#appkernel)

Include the bundle in your AppKernel

```
public function registerBundles()
{
    $bundles = array(
        ...
        new Mcfedr\BeanstalkQueueDriverBundle\McfedrBeanstalkQueueDriverBundle(),

```

Config
------

[](#config)

With this bundle installed you can setup your queue manager config similar to this:

```
mcfedr_queue_manager:
    managers:
        default:
            driver: beanstalkd
            options:
                host: 127.0.0.1
                port: 11300
                default_queue: mcfedr_queue

```

Options to `QueueManager::put`
------------------------------

[](#options-to-queuemanagerput)

- `queue` - The name of the queue to put the job in
- `priority` - The job priority
- `ttr` - Beanstalk Time to run, the time given for a job to finish before it is repeated
- `time` - A `\DateTime` object of when to schedule this job
- `delay` - Number of seconds from now to schedule this job

###  Health Score

29

—

LowBetter than 60% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity9

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity68

Established project with proven stability

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~55 days

Recently: every ~114 days

Total

25

Last Release

3112d ago

Major Versions

1.2.2 → 2.0.02016-07-29

2.0.4 → 3.0.02016-08-04

PHP version history (2 changes)1.0.0PHP &gt;=5.4.0

2.0.0PHP &gt;=5.5

### Community

Maintainers

![](https://www.gravatar.com/avatar/7039999f29a83140d61116032ec1684c752412e458ad1999e15eea2f8808498c?d=identicon)[mcfedr](/maintainers/mcfedr)

---

Top Contributors

[![mcfedr](https://avatars.githubusercontent.com/u/704356?v=4)](https://github.com/mcfedr "mcfedr (31 commits)")

---

Tags

queuejobschedulebeanstalkdtask

###  Code Quality

TestsPHPUnit

Code StylePHP CS Fixer

### Embed Badge

![Health badge](/badges/mcfedr-queue-driver-pheanstalk-bundle/health.svg)

```
[![Health](https://phpackages.com/badges/mcfedr-queue-driver-pheanstalk-bundle/health.svg)](https://phpackages.com/packages/mcfedr-queue-driver-pheanstalk-bundle)
```

###  Alternatives

[tarantool/queue

PHP bindings for Tarantool Queue.

64136.2k4](/packages/tarantool-queue)[pmatseykanets/artisan-beans

Easily manage your Beanstalkd job queues right from the Laravel artisan command

4482.1k](/packages/pmatseykanets-artisan-beans)[mcfedr/queue-manager-bundle

A bundle for managing job queues

1094.3k7](/packages/mcfedr-queue-manager-bundle)[orisai/scheduler

Cron job scheduler - with locks, parallelism and more

4037.1k4](/packages/orisai-scheduler)[aboutcoders/job-bundle

A symfony bundle for asynchronous job processing.

2618.0k1](/packages/aboutcoders-job-bundle)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
