Download the PHP package gemorroj/cron-bundle without Composer
On this page you can find all versions of the php package gemorroj/cron-bundle. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package cron-bundle
Shapecode - Cron Bundle
This bundle provides a simple interface for registering repeated scheduled tasks within your application.
Install instructions
Installing this bundle can be done through these simple steps:
Add the bundle to your project through composer:
Add the bundle to your config if it flex did not do it for you:
Update your DB schema ...
... with Doctrine schema update method ...
Creating your own tasks
Creating your own tasks with CronBundle couldn't be easier - all you have to do is create a normal Symfony2 Command (or ContainerAwareCommand) and tag it with the CronJob annotation, as demonstrated below:
The interval spec ("\/5 *" in the above example) use the standard cronjob schedule format and can be modified whenever you choose. You have to escape the / in this example because it would close the annotation.
You can also register your command multiple times by using the annotation more than once with different values.
For your CronJob to be scanned and included in future runs, you must first run php bin/console shapecode:cron:scan
- it will be scheduled to run the next time you run php app/console shapecode:cron:run
Register your new Crons:
Running your cron jobs automatically
This bundle is designed around the idea that your tasks will be run with a minimum interval - the tasks will be run no more frequently than you schedule them, but they can only run when you trigger then (by running bin/console shapecode:cron:run
).
To facilitate this, you can create a cron job on your system like this:
This will schedule your tasks to run at most every 5 minutes - for instance, tasks which are scheduled to run every 3 minutes will only run every 5 minutes.
Config
Clean Up
By default your logs will be cleared after 7 days to avoid to many entries in database.
You can change this by setting configs.
All versions of cron-bundle with dependencies
symfony/framework-bundle Version ^4.4|^5.0
symfony/dependency-injection Version ^4.4|^5.0
symfony/http-kernel Version ^4.4|^5.0
symfony/config Version ^4.4|^5.0
symfony/console Version ^4.4|^5.0
symfony/http-foundation Version ^4.4|^5.0
symfony/process Version ^4.4|^5.0
symfony/stopwatch Version ^4.4|^5.0
symfony/event-dispatcher Version ^4.4|^5.0
symfony/event-dispatcher-contracts Version ^1.1|^2.0
doctrine/annotations Version ^1.8
doctrine/event-manager Version ^1.1
doctrine/collections Version ^1.6
doctrine/persistence Version ^1.2
doctrine/orm Version ^2.6
doctrine/common Version ^2.8
mtdowling/cron-expression Version ^1.1