crunz
crunz copied to clipboard
A PHP-based job scheduler
| Q | A | ------------- | --- | Fixed tickets | #47 Implements the changes discussed in issue #47
**Description** I want to know which file a particular scheduled event is defined in. This information is not currently exposed in either the table or JSON output format. In my...
This makes it posible to define an alternative location for your config file. For example you want it inside a config folder or outside your project root. Simply define the...
APIs like listing tasks are only available through the CLI commands (ScheduleListCommand.php) ScheduleListCommand currently uses a hardcoded Configuration / FileSystem implementation in the generated crunzcontainer which always returns the current...
There is currently not a way to nicely handle all exceptions in closures: ``` $schedule->run(fn => throw new Exception()) ``` The closure will be serialized and run in a seperate...
It would be nice to be able to configure a bootstrap file to be included for all crunz command runs so it doesn't have to be included in all closures...