CronSchedule ============ Allows one to parse a cron expression into human readable text (as well as other things but I suggest using mtdowling's cron-expression for those). Only supports English for now. It is a (very slightly) modified version of the script used [here](http://www.joostbrugman.com/bitsofthought/page/4/Converting_Crontab_Entries_To_Plain_English_%28Or_Any_Other_Language%29). All copyright should belong to Joost Brugman, 2012. Usage ----- $schedule = CronSchedule::fromCronString('30 01 01 * *'); echo $schedule->asNaturalLanguage(); // At 01:30 on the 1st of every month.