Download the PHP package mirzabusatlic/laravel-schedule-monitor without Composer
On this page you can find all versions of the php package mirzabusatlic/laravel-schedule-monitor. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download mirzabusatlic/laravel-schedule-monitor
More information about mirzabusatlic/laravel-schedule-monitor
Files in mirzabusatlic/laravel-schedule-monitor
Download mirzabusatlic/laravel-schedule-monitor
More information about mirzabusatlic/laravel-schedule-monitor
Files in mirzabusatlic/laravel-schedule-monitor
Vendor mirzabusatlic
Package laravel-schedule-monitor
Short Description Monitor the output of scheduled tasks in a database table
License
Package laravel-schedule-monitor
Short Description Monitor the output of scheduled tasks in a database table
License
Please rate this library. Is it a good library?
Informations about the package laravel-schedule-monitor
laravel-schedule-monitor
Track the output of your scheduled tasks in a database table.
Installation
- Install through composer:
composer require mirzabusatlic/laravel-schedule-monitor - Add
Busatlic\ScheduleMonitor\ScheduleMonitorServiceProvider::classto your list of$providersin to yourconfig/app.php. - Publish the migration using
php artisan vendor:publish --provider=Busatlic\\ScheduleMonitor\\ScheduleMonitorServiceProvider. - Run
php artisan migrateto create thescheduled_eventstable in your database.
Usage
- In your
app/Console/Kernel.php, include theBusatlic\ScheduleMonitor\MonitorsScheduletrait. - Call
$this->monitor($schedule)after you've defined your scheduled commands inschedule().
This will look something like:
Whenever a scheduled command is then run, the its output will be inserted into the scheduled_events table.
| Logged | Command | Output |
|---|---|---|
| 2016-07-11 02:21:38 | files:delete | Deleted (6391/6391) total files. |
All versions of laravel-schedule-monitor with dependencies
PHP Build Version
Package Version
Requires
illuminate/support Version
>=5.3.0
illuminate/database Version >=5.3.0
illuminate/console Version >=5.3.0
illuminate/database Version >=5.3.0
illuminate/console Version >=5.3.0
The package mirzabusatlic/laravel-schedule-monitor contains the following files
Loading the files please wait ...