php-cron-scheduler icon indicating copy to clipboard operation
php-cron-scheduler copied to clipboard

PHP cron job scheduler

Results 42 php-cron-scheduler issues
Sort by recently updated
recently updated
newest added

Please the developer of this library should state it on the documentation page that this library doesn't work on windows. I wasted over 5 hours trying debugging what is not...

Adding check if running on windows. Modify "run in background" compiled boilerplate accordingly.

Due to challenges with maintaining relational references I find it easier to execute scripts in the console from a defined root calling the file from somewhere in a defined relative...

Adding some code to catch if running on Windows and the PHP_BINARY path includes spaces. Adds double quotes around the value of `$bin` so it can run without issues. Tested...

Related to https://github.com/peppeocchi/php-cron-scheduler/pull/53 Can be closed afterwards.

I have checked throughout the code there is no way to define the time zone of each job. You can easily find that functionality in the Laravel task scheduler. It's...

enhancement

It is possible in the method `$scheduler->getExecutedJobs` returns the time and start the task was started and ended and the amount of processing it consumed. because I have a program...

Hello, This library is great! but I have a problem. this my code; ``` $scheduler->php(__DIR__ . "/" . $taskFile) ->onlyOne() ->output([ 'mylog.log' ]) ->at("*/$taskTime * * * *"); ``` I...

Intelephense for VS Code, gets only partial suggestions when you are trying to use the following syntax: ``` $scheduler->php(...) ->everyMinute(...) ->when(...) ``` According to Intelephense the `when` function does not...

enhancement