PHPackages                             elipettingale/laravel-progress-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. elipettingale/laravel-progress-command

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

elipettingale/laravel-progress-command
======================================

A simple command which outputs progress bars to the console.

v2.6.4(7y ago)14.4kMITPHPPHP ^7.0

Since May 18Pushed 7y ago1 watchersCompare

[ Source](https://github.com/elipettingale/laravel-progress-command)[ Packagist](https://packagist.org/packages/elipettingale/laravel-progress-command)[ RSS](/packages/elipettingale-laravel-progress-command/feed)WikiDiscussions master Synced 2mo ago

READMEChangelog (2)Dependencies (2)Versions (17)Used By (0)

Laravel Progress Command
========================

[](#laravel-progress-command)

A simple command which outputs progress bars to the console.

Will output various progress bars which will be updated depending on the key returned by the the fireItem() function.

Example
-------

[](#example)

```
class TestCommand extends ProgressCommand implements HasInfoBar
{
    protected $signature = 'test-command';

    protected function getItems()
    {
        return ['One', 'Two', 'Three', 'Four', 'Five', 'Six', 'Seven', 'Eight', 'Nine', 'Ten'];
    }

    protected function fireItem($item): string
    {
        sleep(1);

        return array_random(['success', 'error']);
    }

    public function getItemIdentifier($item): string
    {
        return $item;
    }

    protected function getProgressBarBlueprints(): array
    {
        return [
            new ProgressBarBlueprint('success', 'Success', [
                'foreground' => 'green'
            ]),
            new ProgressBarBlueprint('error', 'Error', [
                'foreground' => 'red'
            ])
        ];
    }
}

```

### ProgressBarBlueprint

[](#progressbarblueprint)

These are how you define the progress bars that get printed to the console. Each blueprint must have a 'key', which is used to identify which progress bar to increment by the fireItem method, and a 'description' which is free text that is used as a label for the progress bar.

###  Health Score

32

—

LowBetter than 72% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity19

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity66

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

Recently: every ~1 days

Total

15

Last Release

2803d ago

Major Versions

v1.0 → v2.02018-05-25

### Community

Maintainers

![](https://www.gravatar.com/avatar/71bf361a31e6c30317d017982b11f0700e6cf8295f76459f3e17aba65423df55?d=identicon)[elipettingale](/maintainers/elipettingale)

---

Top Contributors

[![elipettingale](https://avatars.githubusercontent.com/u/9060130?v=4)](https://github.com/elipettingale "elipettingale (56 commits)")

### Embed Badge

![Health badge](/badges/elipettingale-laravel-progress-command/health.svg)

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

###  Alternatives

[acdphp/laravel-schedule-police

Stop, start or execute scheduled commands from a simple dashboard without redeploying, while maintaining the visibility, control, and reviewability of the configurations in your codebase.

5116.9k](/packages/acdphp-laravel-schedule-police)[jakyeru/laravel-shell

Laravel-Shell adds a terminal interface to your web application, allowing you to run shell commands directly from your browser.

166.1k](/packages/jakyeru-laravel-shell)

PHPackages © 2026

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