coop182/laravel-cron-validator

Cron Expression Validator
825
Install
composer require coop182/laravel-cron-validator
Latest Version:0.4
PHP:>=5.3.0
License:MIT
Last Updated:Dec 18, 2014
Links: GitHub  ·  Packagist
Maintainer: coop182

Laravel Cron Validator

Installation

Begin by installing this package through Composer. Edit your project's composer.json file to require coop182/laravel-cron-validator.

"require": {
    "coop182/laravel-cron-validator": "0.*"
}

Next, update Composer from the Terminal:

composer update

Once this operation completes, the final step is to add the service provider. Open app/config/app.php, and add a new item to the providers array.

'Coop182\LaravelCronValidator\CronValidatorServiceProvider'

Usage

Add the following to your Model's validation rules

// Add your validation rules here
public static $rules = [
    'cron_field' => 'cron_expression'
];