### Install via Composer Source: https://github.com/shapecode/cron-bundle/blob/master/docs/README.md Add the bundle to your project dependencies using the Composer package manager. ```bash composer require shapecode/cron-bundle ``` -------------------------------- ### Register and Run Cron Jobs via Console Source: https://github.com/shapecode/cron-bundle/blob/master/docs/README.md Commands to scan for new cron annotations and execute scheduled tasks manually. ```bash $ php bin/console shapecode:cron:scan $ php bin/console shapecode:cron:run ``` -------------------------------- ### Configure System Cron for Automatic Execution Source: https://github.com/shapecode/cron-bundle/blob/master/docs/README.md Add a system-level crontab entry to trigger the bundle's runner at a specific interval. ```bash */5 * * * * php /path/to/symfony/bin/console shapecode:cron:run ``` -------------------------------- ### Register Bundle in Symfony Source: https://github.com/shapecode/cron-bundle/blob/master/docs/README.md Manually register the bundle in your configuration file if Symfony Flex does not perform the registration automatically. ```php