PHPackages                             pompdelux/bernard-scheduler-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. pompdelux/bernard-scheduler-bundle

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

pompdelux/bernard-scheduler-bundle
==================================

Adds scheduling to BernardPHP for symfony.

1.0.0(11y ago)151MITPHPPHP &gt;=5.5

Since Jun 30Pushed 11y ago3 watchersCompare

[ Source](https://github.com/pompdelux/bernard-scheduler-bundle)[ Packagist](https://packagist.org/packages/pompdelux/bernard-scheduler-bundle)[ Docs](https://github.com/pompdelux/bernard-scheduler-bundle)[ RSS](/packages/pompdelux-bernard-scheduler-bundle/feed)WikiDiscussions master Synced today

READMEChangelog (1)Dependencies (2)Versions (2)Used By (0)

BernardSchedulerBundle
======================

[](#bernardschedulerbundle)

This bundle brings scheduling to your [BernardPHP](http://bernardphp.com/) powered [Symfony2](http://symfony.com/) app.

Please note that this bundle relies on redis as backend.

Install:
--------

[](#install)

1. Add BernardSchedulerBundle to your dependencies:

    ```
     // composer.json
     {
         // ...
         "require": {
             // ...
             "pompdelux/bernard-scheduler-bundle": "1.*"
         }
     }

    ```
2. Use Composer to download and install the bundle:

    ```
     $ php composer.phar update pompdelux/bernard-scheduler-bundle

    ```
3. Register the bundle in your application:

    ```
     // app/AppKernel.php
     class AppKernel extends Kernel
     {
         // ...
         public function registerBundles()
         {
             $bundles = array(
                 // ...
                 new Pompdelux\BernardSchedulerBundle\BernardSchedulerBundle(),
             );
         }
     }

    ```
4. Add `php_redis` section to `config.yml`

    ```
     // app/config.yml
     php_resque:
         class:
             bernard:
                 host:     %redis_host%
                 port:     %redis_port%
                 prefix:   %redis_prefix%
                 skip_env: %redis_skip_env%
                 database: %redis_database%
                 auth:     %redis_password%

    ```

Usage:
------

[](#usage)

```
use Pompdelux\BernardSchedulerBundle\Job;

// Adds 'DoStuff' job to 'some-bernard-queue' for execution in 30 seconds.
$job = new Job('some-bernard-queue', 'DoStuff', [
    'any' => 'job data',
]);

$container->get('pdl.bernard_scheduler')->enqueueIn(30, $job);
```

###  Health Score

25

—

LowBetter than 37% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity58

Maturing project, gaining track record

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

Unknown

Total

1

Last Release

4332d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/d7ac77974443c5f74873b08343ad793ea43d870d24ecdf72dcc04b6ba9d19762?d=identicon)[mrbase](/maintainers/mrbase)

---

Tags

schedulersymfonybernardphp

### Embed Badge

![Health badge](/badges/pompdelux-bernard-scheduler-bundle/health.svg)

```
[![Health](https://phpackages.com/badges/pompdelux-bernard-scheduler-bundle/health.svg)](https://phpackages.com/packages/pompdelux-bernard-scheduler-bundle)
```

PHPackages © 2026

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