symfonycontrib/cron-bundle

Symfony2 management and execution of repeated application tasks.

v1.0.0 2016-09-12 14:17 UTC

This package is not auto-updated.

Last update: 2024-04-13 12:48:36 UTC


README

This code is part of the SymfonyContrib community.

Symfony2 CronBundle

###Features:

  • Create and manage repeatable application tasks.
  • Tasks can be any method on a publicly accessible Symfony service.
  • Symfony command to execute tasks.

Installation

Installation is similar to a standard bundle. http://symfony.com/doc/current/cookbook/bundles/installation.html

composer require symfonycontrib/cron-bundle
  • Add bundle to AppKernel.php:
new SymfonyContrib\Bundle\CronBundle\CronBundle(),

Usage Examples

@todo