Download the PHP package shapecode/cron-bundle without Composer

On this page you can find all versions of the php package shapecode/cron-bundle. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package cron-bundle

Shapecode - Cron Bundle

paypal

PHP Version Latest Stable Version Latest Unstable Version Total Downloads Monthly Downloads Daily Downloads License

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 almost every 5 minutes - for instance, tasks which are scheduled to run every 3 minutes will only run every 5 minutes.

Disabling and enabling individual cron jobs from the command line

This bundle allows you to easily disable and enable individual scheduled CronJobs from the command-line.

To disable a CronJob, run: bin/console shapecode:cron:disable your:cron:job, where your:cron:job is the name of the CronJob in your project you would like to disable.

Running the above will disable your CronJob until you manually enable it again. Please note that even though the next_run field on the cron_job table will still hold a datetime value, your disabled cronjob will not be run.

To enable a cron job, run: bin/console shapecode:cron:enable your:cron:job, where your:cron:job is the name of the CronJob in your project you would like to enable.

Config

By default, all cronjobs run until they are finished (or exceed the default timeout of 60s set by the Process component. When running cronjob from a controller, a timeout for running cronjobs can be useful as the HTTP request might get killed by PHP due to a maximum execution limit. By specifying a timeout, all jobs get killed automatically, and the correct job result (which would not indicate any success) will be persisted (see #26). A default value of null lets the Process component use its default timeout, otherwise the specified timeout in seconds (as float) is applied (see Process component docs). Important: The timeout is applied to every cronjob, regardless from where (controller or CLI) it is executed.


All versions of cron-bundle with dependencies

PHP Build Version
Package Version
Requires php Version ^8.2
symfony/framework-bundle Version ^6.4 || ^7.0
symfony/dependency-injection Version ^6.4 || ^7.0
symfony/http-kernel Version ^6.4 || ^7.0
symfony/config Version ^6.4 || ^7.0
symfony/console Version ^6.4 || ^7.0
symfony/http-foundation Version ^6.4 || ^7.0
symfony/process Version ^6.4 || ^7.0
symfony/stopwatch Version ^6.4 || ^7.0
symfony/event-dispatcher Version ^6.4 || ^7.0
symfony/event-dispatcher-contracts Version ^3.4
doctrine/doctrine-bundle Version ^2.11
doctrine/event-manager Version ^2.0
doctrine/collections Version ^2.1
doctrine/persistence Version ^3.2
doctrine/orm Version ^2.17 || ^3.0
doctrine/dbal Version ^3.7 || ^4.0
psr/clock Version ^1.0
dragonmantank/cron-expression Version ^3.3
ramsey/collection Version ^2.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package shapecode/cron-bundle contains the following files

Loading the files please wait ....