2017 © Pedro Peláez
 

library cron

Cronjobs

image

cron/cron

Cronjobs

  • Thursday, May 3, 2018
  • by NoUseFreak
  • Repository
  • 18 Watchers
  • 146 Stars
  • 168,238 Installations
  • PHP
  • 11 Dependents
  • 0 Suggesters
  • 27 Forks
  • 10 Open issues
  • 22 Versions
  • 15 % Grown

The README.md

Cron

Packagist Build status Quality Coverage Packagist License, (*1)

This library enables you to have only one general crontab entry that will trigger several different cronjobs that can be defined through this library. The Cron library will decide if the job needs to run or not., (*2)

Attention: make sure you set the server crontab job to a correctly chosen frequency because if there is for example a cronjob defined in code to run every minute, your general crontab job needs to run at least every minute as well to work properly., (*3)

Use Case

Say you need two cronjobs in your application. One that will write the contents of a folder to a log file, and one that will empty the folder. This library enables you to create separate scripts (for example: cron.php) where you notify the Cron library of the two cronjobs. After defining the Jobs with their specifics, they can be added to the resolver and the run command can be given., (*4)

Your server crontab could now look something like:, (*5)

* * * * * /path/to/php /path/to/cron.php >/dev/null 2>&1

The code example below is matched to this use case., (*6)

Code example

<?php

require_once __DIR__ . '/vendor/autoload.php';

// Write folder content to log every five minutes.
$job1 = new \Cron\Job\ShellJob();
$job1->setCommand('ls -la /path/to/folder');
$job1->setSchedule(new \Cron\Schedule\CrontabSchedule('*/5 * * * *'));

// Remove folder contents every hour.
$job2 = new \Cron\Job\ShellJob();
$job2->setCommand('rm -rf /path/to/folder/*');
$job2->setSchedule(new \Cron\Schedule\CrontabSchedule('0 0 * * *'));

$resolver = new \Cron\Resolver\ArrayResolver();
$resolver->addJob($job1);
$resolver->addJob($job2);

$cron = new \Cron\Cron();
$cron->setExecutor(new \Cron\Executor\Executor());
$cron->setResolver($resolver);

$cron->run();

Cron currently only support triggering shell commands. This means you can trigger anything although it is highly encouraged not to call web urls. But if you really need to here are some example commands., (*7)

* * * * * /usr/bin/lynx -source http://example.com/cron.php
* * * * * /usr/bin/wget -O - -q -t 1 http://www.example.com/cron.php
* * * * * curl -s http://example.com/cron.php

Installation

Add the following to your project's composer.json:, (*8)

$ composer require cron/cron
{
    "require": {
        "cron/cron": "^1.0"
    }
}

Crontab syntax

A CRON expression is a string representing the schedule for a particular command to execute. The parts of a CRON schedule are as follows:, (*9)

*    *    *    *    *    *
-    -    -    -    -    -
|    |    |    |    |    |
|    |    |    |    |    + year [optional]
|    |    |    |    +----- day of week (0 - 7) (Sunday=0 or 7)
|    |    |    +---------- month (1 - 12)
|    |    +--------------- day of month (1 - 31)
|    +-------------------- hour (0 - 23)
+------------------------- min (0 - 59)

Each of the parts supports wildcards (*), ranges (2-5) and lists (2,5,6,11)., (*10)

Contributing

All code contributions - including those of people having commit access - must go through a pull request and approved by a core developer before being merged. This is to ensure proper review of all the code., (*11)

Fork the project, create a feature branch, and send us a pull request., (*12)

To ensure a consistent code base, you should make sure the code follows the Coding Standards which we borrowed from Symfony. Make sure to check out php-cs-fixer as this will help you a lot., (*13)

If you would like to help, take a look at the list of issues., (*14)

Requirements

PHP 5.5.0 or above, (*15)

Author and contributors

Dries De Peuter - dries@nousefreak.be - http://nousefreak.be, (*16)

See also the list of contributors who participated in this project., (*17)

License

Cron is licensed under the MIT license., (*18)

The Versions

03/05 2018

dev-master

9999999-dev

Cronjobs

  Sources   Download

MIT

The Requires

 

The Development Requires

03/05 2018

1.3.0

1.3.0.0

Cronjobs

  Sources   Download

MIT

The Requires

 

The Development Requires

02/05 2018

dev-fix-tests

dev-fix-tests

Cronjobs

  Sources   Download

MIT

The Requires

 

The Development Requires

31/08 2017

1.2.4

1.2.4.0

Cronjobs

  Sources   Download

MIT

The Requires

 

The Development Requires

30/08 2017

1.2.3

1.2.3.0

Cronjobs

  Sources   Download

MIT

The Requires

 

The Development Requires

11/04 2017

1.2.2

1.2.2.0

Cronjobs

  Sources   Download

MIT

The Requires

 

The Development Requires

13/01 2017

1.2.1

1.2.1.0

Cronjobs

  Sources   Download

MIT

The Requires

 

The Development Requires

11/01 2017

1.2.0

1.2.0.0

Cronjobs

  Sources   Download

MIT

The Requires

 

The Development Requires

24/03 2016

1.0.9

1.0.9.0

Cronjobs

  Sources   Download

MIT

The Requires

 

The Development Requires

14/12 2015

1.0.8

1.0.8.0

Cronjobs

  Sources   Download

MIT

The Requires

 

The Development Requires

07/12 2015

1.0.7

1.0.7.0

Cronjobs

  Sources   Download

MIT

The Requires

 

The Development Requires

07/12 2015

dev-builder

dev-builder

Cronjobs

  Sources   Download

MIT

The Requires

 

The Development Requires

21/06 2015

dev-tests

dev-tests

Cronjobs

  Sources   Download

MIT

The Requires

 

The Development Requires

05/05 2015

1.0.6

1.0.6.0

Cronjobs

  Sources   Download

MIT

The Requires

 

28/12 2014

1.0.5

1.0.5.0

Cronjobs

  Sources   Download

MIT

The Requires

 

The Development Requires

02/08 2014

1.0.4

1.0.4.0

Cronjobs

  Sources   Download

MIT

The Requires

 

The Development Requires

13/06 2014

1.0.3

1.0.3.0

Cronjobs

  Sources   Download

MIT

The Requires

 

The Development Requires

02/04 2014

1.0.2

1.0.2.0

Cronjobs

  Sources   Download

MIT

The Requires

 

The Development Requires

20/03 2014

1.0.1

1.0.1.0

Cronjobs

  Sources   Download

MIT

The Requires

 

The Development Requires

05/03 2014

1.0.0

1.0.0.0

Cronjobs

  Sources   Download

MIT

The Requires

 

The Development Requires

04/03 2013

0.1.x-dev

0.1.9999999.9999999-dev

Cronjobs

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

The Development Requires

04/03 2013

0.1.0

0.1.0.0

Cronjobs

  Sources   Download

MIT

The Requires

  • php >=5.3.0

 

The Development Requires