coop182 / laravel-cron-validator
Cron Expression Validator
0.4
2014-12-18 22:37 UTC
Requires
- php: >=5.3.0
- mtdowling/cron-expression: 1.0.*
This package is not auto-updated.
Last update: 2024-11-05 04:32:37 UTC
README
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'
];