PHPackages                             fidum/laravel-schedule-queue-command - 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. [CLI &amp; Console](/categories/cli)
4. /
5. fidum/laravel-schedule-queue-command

ActiveLibrary[CLI &amp; Console](/categories/cli)

fidum/laravel-schedule-queue-command
====================================

Provides the ability to queue commands from the Laravel scheduler.

2.0.0(1y ago)1117.5k1[4 PRs](https://github.com/fidum/laravel-schedule-queue-command/pulls)MITPHPPHP ^8.1CI passing

Since Jul 28Pushed 1mo ago1 watchersCompare

[ Source](https://github.com/fidum/laravel-schedule-queue-command)[ Packagist](https://packagist.org/packages/fidum/laravel-schedule-queue-command)[ Docs](https://github.com/fidum/laravel-schedule-queue-command)[ GitHub Sponsors](https://github.com/dmason30)[ RSS](/packages/fidum-laravel-schedule-queue-command/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (6)Dependencies (10)Versions (11)Used By (0)

Provides the ability to queue commands from the Laravel scheduler.
==================================================================

[](#provides-the-ability-to-queue-commands-from-the-laravel-scheduler)

[![Latest Version on Packagist](https://camo.githubusercontent.com/cd91b983670dc3a6cc89acd015248856a06ae8cf82b8a6e5e5bf925401a5a2a4/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f666964756d2f6c61726176656c2d7363686564756c652d71756575652d636f6d6d616e642e7376673f7374796c653d666f722d7468652d6261646765)](https://packagist.org/packages/fidum/laravel-schedule-queue-command)[![GitHub Workflow Status (with branch)](https://camo.githubusercontent.com/c121059335839021a4c07a91144ee00c25fa901961238da99d18ffa26067b7ba/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f666964756d2f6c61726176656c2d7363686564756c652d71756575652d636f6d6d616e642f72756e2d74657374732e796d6c3f6272616e63683d6d61696e267374796c653d666f722d7468652d6261646765)](https://github.com/fidum/laravel-schedule-queue-command/actions?query=workflow%3Arun-tests+branch%3Amain)[![Twitter Follow](https://camo.githubusercontent.com/3ecd70148f9f16e2e0d66fcde3428926f1df4d6797ea463473ccf60dcdf7758a/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f666f6c6c6f772d25343064616e6d61736f6e6d702d3144413146323f6c6f676f3d74776974746572267374796c653d666f722d7468652d6261646765)](https://twitter.com/danmasonmp)

Adds a `queueCommand` function to the scheduler that executes the equivalent of `Artisan::queue(...)` on the given schedule. It also provides the ability to optionally customise the `queue` and `connection` if needed.

Installation
------------

[](#installation)

You can install the package via composer:

```
composer require fidum/laravel-schedule-queue-command
```

Usage
-----

[](#usage)

In your laravel projects `app/Console/Kernel.php`:

```
$schedule->queueCommand(FooCommand::class)->everyMinute();
$schedule->queueCommand(FooCommand::class, ['some-argument' => 'foo']);
$schedule->queueCommand(FooCommand::class, ['some-argument' => 'foo'], 'queue');
$schedule->queueCommand(FooCommand::class, ['some-argument' => 'foo'], 'queue', 'connection');
```

Testing
-------

[](#testing)

```
composer test
```

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](https://github.com/dmason30/.github/blob/main/CONTRIBUTING.md) for details.

Credits
-------

[](#credits)

- [Daniel Mason](https://github.com/dmason30)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

46

—

FairBetter than 93% of packages

Maintenance71

Regular maintenance activity

Popularity27

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity62

Established project with proven stability

 Bus Factor2

2 contributors hold 50%+ of commits

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 ~188 days

Recently: every ~235 days

Total

6

Last Release

440d ago

Major Versions

0.0.2 → 1.0.02022-07-28

1.0.2 → 2.0.02025-02-24

### Community

Maintainers

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

---

Top Contributors

[![dmason30](https://avatars.githubusercontent.com/u/20278756?v=4)](https://github.com/dmason30 "dmason30 (35 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (27 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (18 commits)")

---

Tags

commandcommand-linecronlaravellaravel-frameworkqueueschedulelaravelfidumlaravel-schedule-queue-command

###  Code Quality

TestsPest

Static AnalysisPHPStan

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/fidum-laravel-schedule-queue-command/health.svg)

```
[![Health](https://phpackages.com/badges/fidum-laravel-schedule-queue-command/health.svg)](https://phpackages.com/packages/fidum-laravel-schedule-queue-command)
```

###  Alternatives

[nunomaduro/laravel-console-menu

Laravel Console Menu is an output method for your Laravel/Laravel Zero commands.

815412.0k48](/packages/nunomaduro-laravel-console-menu)[nunomaduro/laravel-console-dusk

Laravel Console Dusk allows the usage of Laravel Dusk in Laravel/Laravel Zero artisan commands.

16255.4k7](/packages/nunomaduro-laravel-console-dusk)[socialengine/sniffer-rules

A Lumen 5 and Laravel 5 SquizLabs Code Sniffer 2.0 artisan command. Detect violations of a defined coding standard. It helps your code remains clean and consistent.

1248.2k1](/packages/socialengine-sniffer-rules)

PHPackages © 2026

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