Stars: 330
Forks: 15
Pull Requests: 6
Issues: 6
Watchers: 9
Last Updated: 2023-02-07 10:50:59
Run the Laravel scheduler without relying on cron
License: MIT License
Languages: PHP
Laravel's native scheduler relies on cron to be executed every minute. It's rock solid and in most cases you should stick to using it.
If you want to simulate the scheduler running every minute in a test environment, using cron can be cumbersome. This package provides a command to run the scheduler every minute, without relying on cron. Instead it uses a ReactPHP loop.
This is how you can start the cronless schedule:
php artisan schedule:run-cronless
This command will never end. Behind the scenes it will execute php artisan schedule
every minute.
We invest a lot of resources into creating best in class open source packages. You can support us by buying one of our paid products.
We highly appreciate you sending us a postcard from your hometown, mentioning which of our package(s) you are using. You'll find our address on our contact page. We publish all received postcards on our virtual postcard wall.
You can install the package via composer. Probably you only want to use this schedule in a development environment.
composer require spatie/laravel-cronless-schedule --dev
This is how you can start the cronless schedule:
php artisan schedule:run-cronless
By default, it will run every minute.
To perform an extra run of the scheduler, just press enter.
If you want to run the scheduler at another frequency, you can pass an amount of seconds to the frequency
option. Here is an example where the schedule will be run every 5 seconds.
php artisan schedule:run-cronless --frequency=5
If you want to run another command instead of the scheduler, just can pass it to the command
option. Here is an example where another command will be run every 5 seconds.
php artisan schedule:run-cronless --command=your-favorite-artisan-command
By default, the command will run forever. You can shorten that period by passing an amount of seconds to the stop-after-seconds
option.
In this example we'll stop the command after 5 seconds
php artisan schedule:run-cronless --stop-after-seconds=5
composer test
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
If you've found a bug regarding security please mail [email protected] instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.