PHPackages                             aeno/php-slickprogress - 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. aeno/php-slickprogress

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

aeno/php-slickprogress
======================

Lightweight but beautiful CLI progress bars and spinners

1.0.1(4y ago)1271MPL-2.0PHPPHP ^7.1||^7.2||^7.3||^7.4||^8.0

Since Jun 17Pushed 4y ago1 watchersCompare

[ Source](https://github.com/aeno/php-slickprogress)[ Packagist](https://packagist.org/packages/aeno/php-slickprogress)[ GitHub Sponsors](https://github.com/aeno)[ Fund](https://ko-fi.com/aenogym)[ RSS](/packages/aeno-php-slickprogress/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (2)Dependencies (1)Versions (3)Used By (1)

php-slickprogress
=================

[](#php-slickprogress)

 [![Latest release](https://camo.githubusercontent.com/a6bae76c03b8954f1366d14a0b4ee247f0323287ccbddfece21276b781a3a02d/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f762f72656c656173652f61656e6f2f7068702d736c69636b70726f6772657373)](https://camo.githubusercontent.com/a6bae76c03b8954f1366d14a0b4ee247f0323287ccbddfece21276b781a3a02d/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f762f72656c656173652f61656e6f2f7068702d736c69636b70726f6772657373) [![License: MPL-2.0](https://camo.githubusercontent.com/024190deebfcdb2cbb1d463d29a6c01e1ed66605145833a28c3df2acedf50ea8/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4c6963656e73652d4d504c2d2d322e302d627269676874677265656e)](https://camo.githubusercontent.com/024190deebfcdb2cbb1d463d29a6c01e1ed66605145833a28c3df2acedf50ea8/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4c6963656e73652d4d504c2d2d322e302d627269676874677265656e)

Lightweight but beautiful PHP progress bars and spinners.

No dependencies
---------------

[](#no-dependencies)

- works with PHP 7.1+

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

[](#installation)

```
composer require aeno/php-slickprogress
```

Usage
-----

[](#usage)

### Simple progress

[](#simple-progress)

[![Simple progress output](docs/slick-simple.gif)](docs/slick-simple.gif)

```
$progress = new \Aeno\SlickProgress\Progress();
$progress->start(50);

for ($i = 0; $i < 50; $i++) {
    $progress->advance();
    usleep(25000);
}

$progress->finish();
```

### Detailed progress

[](#detailed-progress)

[![Detailed progress output](docs/slick-detailed.gif)](docs/slick-detailed.gif)

```
$theme = new \Aeno\SlickProgress\Theme\Simple();
$theme->showStep(true);
$theme->showPercent(true);

$progress = new \Aeno\SlickProgress\Progress($theme);
$progress->start(200);

for ($i = 0; $i < 200; $i++) {
    $progress->advance();
    usleep(25000);
}

$progress->finish();
```

### Indefinite progress

[](#indefinite-progress)

[![Indefinite progress output](docs/slick-indefinite.gif)](docs/slick-indefinite.gif)

```
$progress = new \Aeno\SlickProgress\Progress();
$progress->start(-1);

for ($i = 0; $i < 200; $i++) {
    $progress->advance();
    usleep(25000);
}

$progress->finish();
```

### Spinner

[](#spinner)

[![Spinner output](docs/slick-spinner.gif)](docs/slick-spinner.gif)

```
$foobar = new \Foobar();    // your business logic

$theme = new \Aeno\SlickProgress\Theme\Snake();
$theme->setColorType(\Aeno\SlickProgress\Colors::COLOR_TYPE_ANSI256);

$progress = new \Aeno\SlickProgress\Progress($theme);
$progress->start(-1);

for ($i = 0; $i < 100; $i++) {
    if ($foobar->hasNewStatus()) {
        $progress->setStatusMessage($foobar->getCurrentStatus());
    }

    $progress->advance();
    usleep(50000);
}

$progress->finish(\Aeno\SlickProgress\ThemeInterface::FINISH_TYPE_MESSAGE, '✅ Done!');
```

License
-------

[](#license)

php-slickprogress is licensed under the [Mozilla Public License, v. 2.0](https://mozilla.org/MPL/2.0/).

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity9

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity57

Maturing project, gaining track record

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

Total

2

Last Release

1796d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/598616?v=4)[aeno](/maintainers/aeno)[@aeno](https://github.com/aeno)

---

Top Contributors

[![aeno](https://avatars.githubusercontent.com/u/598616?v=4)](https://github.com/aeno "aeno (11 commits)")

---

Tags

clilightweightphpprogress-barspinner

###  Code Quality

Static AnalysisPsalm

Type Coverage Yes

### Embed Badge

![Health badge](/badges/aeno-php-slickprogress/health.svg)

```
[![Health](https://phpackages.com/badges/aeno-php-slickprogress/health.svg)](https://phpackages.com/packages/aeno-php-slickprogress)
```

###  Alternatives

[wp-cli/wp-cli

WP-CLI framework

5.0k17.2M320](/packages/wp-cli-wp-cli)[consolidation/annotated-command

Initialize Symfony Console commands from annotated command class methods.

22569.8M19](/packages/consolidation-annotated-command)[chi-teck/drupal-code-generator

Drupal code generator

26947.8M5](/packages/chi-teck-drupal-code-generator)[seld/cli-prompt

Allows you to prompt for user input on the command line, and optionally hide the characters they type

24725.8M17](/packages/seld-cli-prompt)[illuminate/console

The Illuminate Console package.

12944.1M5.1k](/packages/illuminate-console)[php-tui/php-tui

Comprehensive TUI library heavily influenced by Ratatui

589747.0k6](/packages/php-tui-php-tui)

PHPackages © 2026

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