sebastianpopp / laravel-cron-over-http
Run your Laravel cron jobs and queue over HTTP.
0.2.0
2025-04-22 06:43 UTC
Requires
- php: ^8.1
- laravel/framework: ^10.0 || ^11.0 || ^12.0
Requires (Dev)
- laravel/pint: ^1.0
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.