frnk / cron-expression-parser-bundle
Parses Cron Expression
Installs: 414
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 1
Open Issues: 0
pkg:composer/frnk/cron-expression-parser-bundle
Requires
- mtdowling/cron-expression: v1.0.3
This package is auto-updated.
Last update: 2025-09-17 01:11:03 UTC
README
This is a Symfony2 bundle that wrappes mtdowlings cron-expression library. See https://github.com/mtdowling/cron-expression
CRON Expressions
A CRON expression is a string representing the schedule for a particular command to execute. The parts of a CRON schedule are as follows:
* * * * * *
- - - - - -
| | | | | |
| | | | | + 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)