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 yesterday

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 69% 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

2853d ago

Major Versions

v1.0 → v2.02018-05-25

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/9060130?v=4)[Elliot Pettingale](/maintainers/elipettingale)[@elipettingale](https://github.com/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

[statamic-rad-pack/runway

Eloquently manage your database models in Statamic.

135212.4k7](/packages/statamic-rad-pack-runway)[ronasit/laravel-entity-generator

Provided console command for generating entities.

2052.5k](/packages/ronasit-laravel-entity-generator)[ecotone/laravel

Ecotone for Laravel — CQRS, Event Sourcing, Sagas, Durable Workflows, and Outbox on top of Laravel Queue, via PHP attributes.

21313.7k3](/packages/ecotone-laravel)[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.

5121.3k](/packages/acdphp-laravel-schedule-police)

PHPackages © 2026

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