arondeparon / laravel-schedule-when
A command that enables you see what the scheduler will do at a given moment in time.
1.0
2019-04-05 19:45 UTC
Requires
- php: ^7.2
- illuminate/support: ~5
Requires (Dev)
- mockery/mockery: ^1.1
- orchestra/testbench: ~3.8
- phpunit/phpunit: ^8.0
- sempro/phpunit-pretty-print: ^1.0
This package is auto-updated.
Last update: 2024-10-29 06:05:31 UTC
README
This Laravel package provides a command that tells you what the scheduler would do at a given moment in time.
In some applications, the schedule can quickly grow to dozens of scheduled commands, making it harder and harder to see what the Scheduler will do a give moment in time.
This command will help you to see what the Scheduler will or will not do so that you can stop guessing.
Installation and usage
This package requires PHP 7.2 and Laravel 5.5 or higher.
Getting started
Install via Composer
$ composer require arondeparon/laravel-schedule-when
Usage
# To see what would run right now php artisan schedule:when # To see what will run at a given moment php artisan schedule:when "2019-01-01 08:05"
Testing
$ composer test
License
MIT license. Please see the license file for more information.