Run the Laravel scheduler without relying on cron

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.
Support us

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.
Installation
You can install the package via composer. Probably you only want to use this schedule in a development environment.