sebastianpopp / laravel-cron-over-http
Run your Laravel cron jobs and queue over HTTP.
Installs: 865
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
pkg:composer/sebastianpopp/laravel-cron-over-http
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.