Cron integration for symfony.
Installing this bundle can be done through these simple steps:
- Add the bundle to your project as a composer dependency:
// composer.json
{
// ...
require: {
// ...
"cron/cron-bundle": "^1.2"
}
}- Update your composer installation:
composer update- Add the bundle to your application kernel:
// app/AppKernel.php
public function registerBundles()
{
// ...
$bundle = array(
// ...
new Cron\CronBundle\CronCronBundle(),
);
// ...
return $bundles;
}- Update your DB schema
bin/console doctrine:schema:update- Start using the bundle:
bin/console cron:list
bin/console cron:run- 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>&1bin/console cron:listShow a list of all jobs. Job names are show with [x] if they are enabled and [ ] otherwise.
bin/console cron:createCreate a new job.
bin/console cron:delete _jobName_Delete a job. For your own protection, the job must be disabled first.
bin/console cron:enable _jobName_Enable a job.
bin/console cron:disable _jobName_Disable a job.
bin/console cron:run [--force] [job]which we borrowed from Symfony. Make sure to check out php-cs-fixer as this will help you a lot.
If you would like to help, take a look at the list of issues.
PHP 5.3.2 or above
Dries De Peuter - dries@nousefreak.be - http://nousefreak.be
See also the list of contributors who participated in this project.
CronBundle is licensed under the MIT license.