sebastianpopp/laravel-cron-over-http

Run your Laravel cron jobs and queue over HTTP.

0.2.0 2025-04-22 06:43 UTC

This package is auto-updated.

Last update: 2025-06-22 07:00:59 UTC


README

Run your Laravel cron jobs and queue over HTTP.

Installation

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

License

The MIT License (MIT). Please see License File for more information.