Run your Laravel cron jobs and queue over HTTP.
sebastianpopp/laravel-cron-over-http is a Laravel package for run your laravel cron jobs and queue over http..
It currently has 1 GitHub stars and 1.192 downloads on Packagist (latest version 0.4.0).
Install it with composer require sebastianpopp/laravel-cron-over-http.
Discover more Laravel packages by sebastianpopp
or browse all Laravel packages to compare alternatives.
Last updated
Run your Laravel cron jobs and queue over HTTP.
You can install the package via composer:
composer require sebastianpopp/laravel-cron-over-http
Define a secret token in your .env file:
CRON_SECRET="your-secret-token"
Setup a cron job to call the cron route:
https://your-app.com/cron?secret=your-secret-token
You can optionally disable the queue by setting the CRON_QUEUE environment variable to false:
CRON_QUEUE=false
The MIT License (MIT). Please see License File for more information.