gemorroj / cron-bundle
This bundle provides scheduled execution of Symfony commands
Installs: 65
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 3
Forks: 27
Type:symfony-bundle
Requires
- php: ^7.2.5
- doctrine/annotations: ^1.8
- doctrine/collections: ^1.6
- doctrine/common: ^2.8
- doctrine/event-manager: ^1.1
- doctrine/orm: ^2.6
- doctrine/persistence: ^1.2
- mtdowling/cron-expression: ^1.1
- symfony/config: ^4.4|^5.0
- symfony/console: ^4.4|^5.0
- symfony/dependency-injection: ^4.4|^5.0
- symfony/event-dispatcher: ^4.4|^5.0
- symfony/event-dispatcher-contracts: ^1.1|^2.0
- symfony/framework-bundle: ^4.4|^5.0
- symfony/http-foundation: ^4.4|^5.0
- symfony/http-kernel: ^4.4|^5.0
- symfony/process: ^4.4|^5.0
- symfony/stopwatch: ^4.4|^5.0
Requires (Dev)
- dg/bypass-finals: ~1.1
- doctrine/coding-standard: ~7.0
- maglnet/composer-require-checker: ~2.0
- phpstan/phpstan: ~0.12
- phpstan/phpstan-deprecation-rules: ~0.12
- phpstan/phpstan-phpunit: ~0.12
- phpstan/phpstan-strict-rules: ~0.12
- phpunit/phpunit: ~9.0
- roave/security-advisories: dev-master
- squizlabs/php_codesniffer: ~3.4
- symfony/var-dumper: ~5.0
Suggests
- shapecode/cron-sonata-admin-bundle: to manage cronjobs in the sonata admin panel
Replaces
- dev-master / 4.0.x-dev
- 4.0.0
- dev-develop / 3.3.x-dev
- 3.2.2
- 3.2.1
- 3.2.0
- 3.1.2
- 3.1.1
- 3.1.0
- dev-release/3.0 / 3.0.x-dev
- 3.0.6
- 3.0.5
- 3.0.4
- 3.0.3
- 3.0.2
- 3.0.1
- 3.0.0
- 2.1.0
- 2.0.0
- 2.0.0-beta2
- 2.0.0-beta1
- 1.3.4
- 1.3.3
- 1.3.2
- 1.3.1
- 1.3.0
- 1.2.0
- 1.1.0
- 1.0.3
- 1.0.2
- 1.0.1
- 1.0.0
- dev-remove-command
- dev-datepoint-immutable
- dev-doctrine-orm-3
- dev-php72-for-upstream
- dev-patch-1
- dev-release/3.2
- dev-feature/improvements
This package is auto-updated.
Last update: 2024-11-08 14:26:38 UTC
README
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:
composer require gemorroj/cron-bundle
Add the bundle to your config if it flex did not do it for you:
<?php // config/bundles.php return [ // ... Shapecode\Bundle\CronBundle\ShapecodeCronBundle::class, // ... ];
Update your DB schema ...
... with Doctrine schema update method ...
php bin/console doctrine:schema:update --force
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:
<?php declare(strict_types=1); namespace App\DemoBundle\Command; use Shapecode\Bundle\CronBundle\Annotation\CronJob; use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; /** * @CronJob("*\/5 * * * *") * Will be executed every 5 minutes */ class DemoCommand extends Command { public function configure() : void { // Must have a name configured // ... } public function execute(InputInterface $input, OutputInterface $output) : void { // Your code here } }
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:
$ php bin/console shapecode:cron:scan $ php bin/console shapecode:cron:run
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:
*/5 * * * * php /path/to/symfony/bin/console shapecode:cron:run
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.
shapecode_cron: results: auto_prune: true # default interval: 7 days ago # default. A date time interval specification