traum-ferienwohnungen/scheduledaemon

ScheduleDaemon for Laravel. You must ensure every schedule:run is shorter then 60 seconds otherwise events might be ignored.
15,758
Install
composer require traum-ferienwohnungen/scheduledaemon
Latest Version:1.1.0
License:MIT
Last Updated:Mar 29, 2018
Links: GitHub  ·  Packagist
Maintainer: traum

laravel-scheduledaemon

Provides a single artisan command to run schedule:run as a daemon. Use this if, and only if you can guarantee that all your schedule:run executions will terminate in 60 seconds or less. This should be easy if you use schedule:run only to dispatch scheduled jobs to workers. Events might me dropped in case the runs take longer to finish.

Installation

This package requires at least Laravel 5.5. Install via composer:

composer require traum-ferienwohnungen/scheduledaemon

Laravels package auto-discovery feature is supported, so nothing more to do. You may add ServiceProvider manually by editing config/app.php:

...
$providers => [
    //...
    ScheduleDaemon\ServiceProvider::class,
    //..
];

Usage

php ./artisan schedule:daemon

Related Packages

reliese/laravel

Reliese Components for Laravel Framework code generation.

3,991,690 1,705
php-tmdb/laravel

Laravel Package for TMDB ( The Movie Database ) API. Provides easy access to the...

53,315 160
laravel-ja/laravel

The Laravel Framework.

5,667 17
kavenegar/laravel

laravel 4 and 5 kavenegar integration

368,693 86
laravel/laravel

The skeleton application for the Laravel framework.

64,930,508 84,972