PHPackages                             effiana/cron-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. [Utility &amp; Helpers](/categories/utility)
4. /
5. effiana/cron-bundle

ActiveSymfony-bundle[Utility &amp; Helpers](/categories/utility)

effiana/cron-bundle
===================

Symfony cron

2.2.19(6y ago)0219MITPHPPHP ^7.2

Since Feb 23Pushed 6y agoCompare

[ Source](https://github.com/Effiana/CronBundle)[ Packagist](https://packagist.org/packages/effiana/cron-bundle)[ RSS](/packages/effiana-cron-bundle/feed)WikiDiscussions master Synced today

READMEChangelog (10)Dependencies (8)Versions (28)Used By (0)

Cron Bundle
===========

[](#cron-bundle)

[![Packagist](https://camo.githubusercontent.com/670d6948727a1605fee9849e6bc665f11b0520fb43ade3504d65776b2a53a2a2/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f65666669616e612f63726f6e2d62756e646c652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/effiana/cron-bundle)[![Build Status](https://camo.githubusercontent.com/50dc0aa45ce91c0cea34947e98c82a550749246125b981f62adaeca166f4c3f4/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f45666669616e612f43726f6e42756e646c652e7376673f7374796c653d666c61742d737175617265)](https://travis-ci.org/Effiana/CronBundle)[![Packagist](https://camo.githubusercontent.com/8fb1a6f70a5e5be5b15a9af2700761f995e20fd90f7d87b64186a10018243a25/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f65666669616e612f63726f6e2d62756e646c652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/effiana/cron-bundle)[![License](https://camo.githubusercontent.com/942e017bf0672002dd32a857c95d66f28c5900ab541838c6c664442516309c8a/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d626c75652e7376673f7374796c653d666c61742d737175617265)](LICENSE)

[Cron](https://github.com/Effiana/Cron) integration for symfony.

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

[](#installation)

Installing this bundle can be done through these simple steps:

1. Add the bundle to your project as a composer dependency:

```
composer require effiana/cron-bundle
```

2. Add the bundle to your application kernel:

```
// config/bundles.php
Effiana\CronBundle\EffianaCronBundle::class => ['all' => true],
```

3. Update your DB schema

```
bin/console make:migration
bin/console doctrine:migrations:migrate

OR

bin/console effiana:migration:load --force
```

4. Start using the bundle:

```
bin/console cron:list
bin/console cron:run
```

5. To run your cron jobs automatically, add the following line to your (or whomever's) crontab:

```
* * * * * /path/to/symfony/install/app/console cron:run 1>> /dev/null 2>&1

```

**OR**If you don't have a dedicated cron daemon (e.g. in Heroku), you can use:

```
bin/console cron:start # will run in background mode, use --blocking to run in foreground
bin/console cron:stop # will stop the background cron daemon
```

Available commands
------------------

[](#available-commands)

### list

[](#list)

```
bin/console cron:list
```

Show a list of all jobs. Job names are show with `[x]` if they are enabled and `[ ]` otherwise.

### create

[](#create)

```
bin/console cron:create
```

Create a new job.

### delete

[](#delete)

```
bin/console cron:delete _jobName_
```

Delete a job. For your own protection, the job must be disabled first.

### enable

[](#enable)

```
bin/console cron:enable _jobName_
```

Enable a job.

### disable

[](#disable)

```
bin/console cron:disable _jobName_
```

Disable a job.

### run

[](#run)

```
bin/console cron:run [--force] [job]
```

> which we borrowed from Symfony. Make sure to check out [php-cs-fixer](https://github.com/fabpot/PHP-CS-Fixer) as this will help you a lot.

### start

[](#start)

```
bin/console cron:start [--blocking]
```

Start the cron as a daemon. By default it forks itself to the background and suppresses any output. The `--blocking` option will keep it in the foreground and will display output. This is useful when you don't have a dedicated cron daemon (e.g. on Heroku).

### stop

[](#stop)

```
bin/console cron:stop
```

Stops the background cron daemon started with `cron:start`. This is not applicable when the daemon was started with `--blocking`.

If you would like to help, take a look at the [list of issues](http://github.com/Effiana/CronBundle/issues).

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

[](#requirements)

PHP 7.2 or above

Author and contributors
-----------------------

[](#author-and-contributors)

Dries De Peuter -  -

See also the list of [contributors](https://github.com/Effiana/CronBundle/contributors) who participated in this project.

License
-------

[](#license)

CronBundle is licensed under the MIT license.

###  Health Score

31

—

LowBetter than 66% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community16

Small or concentrated contributor base

Maturity68

Established project with proven stability

 Bus Factor2

2 contributors hold 50%+ of commits

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 ~70 days

Recently: every ~23 days

Total

27

Last Release

2310d ago

Major Versions

1.2.5 → 2.0.02018-06-30

PHP version history (5 changes)1.0.0PHP &gt;=5.3.0

1.2.1PHP &gt;=5.5.0

2.0.2PHP &gt;=5.5.9

2.0.3PHP 7.2.\*

2.2.12PHP ^7.2

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/46026201?v=4)[Effiana](/maintainers/Effiana)[@Effiana](https://github.com/Effiana)

---

Top Contributors

[![NoUseFreak](https://avatars.githubusercontent.com/u/879864?v=4)](https://github.com/NoUseFreak "NoUseFreak (47 commits)")[![BrandOrientedTmp](https://avatars.githubusercontent.com/u/98951220?v=4)](https://github.com/BrandOrientedTmp "BrandOrientedTmp (33 commits)")[![labudzinski](https://avatars.githubusercontent.com/u/1152480?v=4)](https://github.com/labudzinski "labudzinski (7 commits)")[![akalineskou](https://avatars.githubusercontent.com/u/3526365?v=4)](https://github.com/akalineskou "akalineskou (3 commits)")[![lokhman](https://avatars.githubusercontent.com/u/7714105?v=4)](https://github.com/lokhman "lokhman (2 commits)")[![ianitsky](https://avatars.githubusercontent.com/u/163327?v=4)](https://github.com/ianitsky "ianitsky (1 commits)")[![krisix](https://avatars.githubusercontent.com/u/680001?v=4)](https://github.com/krisix "krisix (1 commits)")[![dominikmank](https://avatars.githubusercontent.com/u/7710527?v=4)](https://github.com/dominikmank "dominikmank (1 commits)")[![msamec](https://avatars.githubusercontent.com/u/4154034?v=4)](https://github.com/msamec "msamec (1 commits)")[![carcabot](https://avatars.githubusercontent.com/u/5592599?v=4)](https://github.com/carcabot "carcabot (1 commits)")[![raphaelvoisin](https://avatars.githubusercontent.com/u/7235385?v=4)](https://github.com/raphaelvoisin "raphaelvoisin (1 commits)")[![TakeMeNL](https://avatars.githubusercontent.com/u/53776685?v=4)](https://github.com/TakeMeNL "TakeMeNL (1 commits)")[![Gemorroj](https://avatars.githubusercontent.com/u/885731?v=4)](https://github.com/Gemorroj "Gemorroj (1 commits)")[![vstanchev](https://avatars.githubusercontent.com/u/9103789?v=4)](https://github.com/vstanchev "vstanchev (1 commits)")

### Embed Badge

![Health badge](/badges/effiana-cron-bundle/health.svg)

```
[![Health](https://phpackages.com/badges/effiana-cron-bundle/health.svg)](https://phpackages.com/packages/effiana-cron-bundle)
```

###  Alternatives

[rcsofttech/audit-trail-bundle

Enterprise-grade, high-performance Symfony audit trail bundle. Automatically track Doctrine entity changes with split-phase architecture, multiple transports (HTTP, Queue, Doctrine), and sensitive data masking.

1175.2k](/packages/rcsofttech-audit-trail-bundle)[easycorp/easyadmin-bundle

Admin generator for Symfony applications

4.3k17.5M378](/packages/easycorp-easyadmin-bundle)[sulu/sulu

Core framework that implements the functionality of the Sulu content management system

1.3k1.4M196](/packages/sulu-sulu)[kimai/kimai

Kimai - Time Tracking

4.8k8.7k1](/packages/kimai-kimai)[2lenet/crudit-bundle

The easy like Crud'it Bundle.

1615.6k12](/packages/2lenet-crudit-bundle)[open-dxp/opendxp

Content &amp; Product Management Framework (CMS/PIM)

9317.2k55](/packages/open-dxp-opendxp)

PHPackages © 2026

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