PHPackages                             dz/easy-cron-manager - 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. dz/easy-cron-manager

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

dz/easy-cron-manager
====================

Flexible cron manager bundle for Symfony2

1.0.1(10y ago)018MITPHPPHP &gt;=5.3.2

Since Nov 16Pushed 9y ago1 watchersCompare

[ Source](https://github.com/Dsazz/DZCronManagerBundle)[ Packagist](https://packagist.org/packages/dz/easy-cron-manager)[ Docs](http://github.com/Dsazz/DZCronManagerBundle)[ RSS](/packages/dz-easy-cron-manager/feed)WikiDiscussions master Synced 4w ago

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

DZCronManagerBundle
===================

[](#dzcronmanagerbundle)

This bundle provide manager for managing cron table.

Setting up DZCronManagerBundle
==============================

[](#setting-up-dzcronmanagerbundle)

### Step 1 - Requirements and Installing the bundle

[](#step-1---requirements-and-installing-the-bundle)

The first step is to tell composer that you want to download DZCronManagerBundle which can be achieved by typing the following at the command prompt:

```
$ php composer.phar require dz/easy-cron-manager
```

### Step 2 - Enable the bundle in your kernel

[](#step-2---enable-the-bundle-in-your-kernel)

The bundle must be added to your `AppKernel`

```
# app/AppKernel.php

public function registerBundles()
{
    return array(
        // ...
        new DZ\CronManagerBundle\DZCronManagerBundle(),
        // ...
    );
}
```

Example of using DZCronManagerBundle
====================================

[](#example-of-using-dzcronmanagerbundle)

```
