PHPackages                             kduma/cron - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Queues &amp; Workers](/categories/queues)
4. /
5. kduma/cron

AbandonedArchivedLibrary[Queues &amp; Workers](/categories/queues)

kduma/cron
==========

Laravel 5.1 queue runner for webcron (with runtime limit)

v1.1.0(10y ago)7356MITPHPPHP &gt;=5.4.0

Since Jan 30Pushed 9y ago1 watchersCompare

[ Source](https://github.com/kduma-OSS/LV-cron)[ Packagist](https://packagist.org/packages/kduma/cron)[ RSS](/packages/kduma-cron/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (2)Dependencies (1)Versions (7)Used By (0)

L5-cron
=======

[](#l5-cron)

[![Latest Stable Version](https://camo.githubusercontent.com/3eccffae51bc69456f22a4eb31a29dc7b2876cc6b453e34d6d0fb1a94cdf305b/68747470733a2f2f706f7365722e707567782e6f72672f6b64756d612f63726f6e2f762f737461626c652e737667)](https://packagist.org/packages/kduma/cron)[![Total Downloads](https://camo.githubusercontent.com/d51dc76e73152f4ed115e9952ed47e973a4bea80c98fdc95659e3a604d85e7fb/68747470733a2f2f706f7365722e707567782e6f72672f6b64756d612f63726f6e2f646f776e6c6f6164732e737667)](https://packagist.org/packages/kduma/cron)[![Latest Unstable Version](https://camo.githubusercontent.com/b6896dd87d23b012e70d9509cd2f5b23b68f3a6345f1e5be287765f51fb1710e/68747470733a2f2f706f7365722e707567782e6f72672f6b64756d612f63726f6e2f762f756e737461626c652e737667)](https://packagist.org/packages/kduma/cron)[![License](https://camo.githubusercontent.com/d3772bb265f73efcbc5a1117ed3647de0b201b6a6bb0f9409dedd06d57fbf53c/68747470733a2f2f706f7365722e707567782e6f72672f6b64756d612f63726f6e2f6c6963656e73652e737667)](https://packagist.org/packages/kduma/cron)[![SensioLabsInsight](https://camo.githubusercontent.com/4043f60c665dcb9b99840262d2d0471497d70b703f707f95c34fdf700756a53d/68747470733a2f2f696e73696768742e73656e73696f6c6162732e636f6d2f70726f6a656374732f64346331336464302d646564342d346438392d383263322d3334653330623665656330392f6d696e692e706e67)](https://insight.sensiolabs.com/projects/d4c13dd0-ded4-4d89-82c2-34e30b6eec09)[![StyleCI](https://camo.githubusercontent.com/e0761ed2dacf170681a61bb0f56d0ef0a5f3c4ee4d44cc7422b9d972b1202c71/68747470733a2f2f7374796c6563692e696f2f7265706f732f33303039333535342f736869656c643f6272616e63683d6d6173746572)](https://styleci.io/repos/30093554)

Laravel 5.1 queue runner for webcron (with runtime limit)

Setup
=====

[](#setup)

Add the package to the require section of your composer.json and run `composer update`

```
"kduma/cron": "^1.1"

```

Then add the Service Provider to the providers array in `config/app.php` but not before `Illuminate\Queue\QueueServiceProvider`:

```
KDuma\Cron\CronServiceProvider::class,
KDuma\Cron\WebCronServiceProvider::class,

```

Usage
=====

[](#usage)

Command syntax is like `queue:work --daemon` with 2 new options:

```
artisan queue:cron [-t|--timelimit[="..."]] [-r|--runlimit[="..."]] [--queue[="..."]] [--delay[="..."]] [--force] [--sleep[="..."]] [--tries[="..."]] [connection]

```

- `--timelimit (-t)` - Maximum time this command can work in seconds. (default: 60)
- `--runlimit (-r)` - Maximum queue jobs to run in. (default: no limit)

Best practices
==============

[](#best-practices)

- Split your jobs into small tasks that takes small amount of time
- When you choice time limit, subtract time of longest job

Web Cron
========

[](#web-cron)

In your `.env` file add:

```
WEBCRON_SECRET=YOUR_SECRET

```

Replace `YOUR_SECRET` with your secret. Now you can run queue by visiting `http:///cron/YOUR_SECRET` url.

You can also configure time limit and/or run limit using following entries in `.env`:

```
WEBCRON_TIMELIMIT=30
WEBCRON_RUNLIMIT=25

```

Packagist
=========

[](#packagist)

View this package on Packagist.org: [kduma/cron](https://packagist.org/packages/kduma/cron)

###  Health Score

30

—

LowBetter than 64% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity17

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity62

Established project with proven stability

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~32 days

Total

5

Last Release

3996d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/d09451622719c7efce1a7971b8e5a875859504882ba2b8c279d1015a99e8f12c?d=identicon)[kduma](/maintainers/kduma)

---

Top Contributors

[![kduma](https://avatars.githubusercontent.com/u/1062582?v=4)](https://github.com/kduma "kduma (27 commits)")

---

Tags

laravelphplaravelqueuecron

### Embed Badge

![Health badge](/badges/kduma-cron/health.svg)

```
[![Health](https://phpackages.com/badges/kduma-cron/health.svg)](https://phpackages.com/packages/kduma-cron)
```

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
