PHPackages                             funivan/console - 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. funivan/console

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

funivan/console
===============

Improved symfony console

0.0.4(9y ago)011.6kMITPHPPHP &gt;=5.5.0

Since Dec 17Pushed 9y ago1 watchersCompare

[ Source](https://github.com/funivan/Console)[ Packagist](https://packagist.org/packages/funivan/console)[ Docs](https://github.com/)[ RSS](/packages/funivan-console/feed)WikiDiscussions master Synced yesterday

READMEChangelogDependencies (6)Versions (5)Used By (0)

Console
=======

[](#console)

[![Packagist](https://camo.githubusercontent.com/8caf9cff0ad72cad4430c1a904acd2158e2148b48f6c89e1e37bb79a42e0632b/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f66756e6976616e2f636f6e736f6c652e737667)](https://packagist.org/packages/funivan/console)[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE.md)[![Build Status](https://camo.githubusercontent.com/f9ae47ce5e714d2e77b81c1e0e74d97b44551d395548c7aa246bc8fdf90dc4ab/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f66756e6976616e2f636f6e736f6c652f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://travis-ci.org/funivan/console)[![Coverage Status](https://camo.githubusercontent.com/e1f9ba83c6191bb0b1e11a9d6010d60a24ccfb34ca3a9784098d27f375f405d2/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f636f7665726167652f672f66756e6976616e2f636f6e736f6c652e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/funivan/console/code-structure)[![Quality Score](https://camo.githubusercontent.com/57a23f46e77cef81107ade043c5098300a08ab58c23439df6f17708ef9a3d6c2/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f66756e6976616e2f636f6e736f6c652e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/funivan/console)[![Total Downloads](https://camo.githubusercontent.com/17f164473f879644e968153a716775dff86112946bef7d8149c11a989dbf94a0/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f66756e6976616e2f636f6e736f6c652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/funivan/console)

Improved symfony console

Install
-------

[](#install)

Via Composer

```
composer require funivan/console
```

Usage
-----

[](#usage)

```
  use Funivan\Console\CommandsLoader\FileSystemCommandsLoader;
  use Funivan\Console\NameResolver\StandardNameResolver;
  use Funivan\Console\SingleState\SingleStateConfigurator;

  $configurator = new \Funivan\Console\ConsoleApplicationConfigurator();

  $dispatcher = new \Symfony\Component\EventDispatcher\EventDispatcher();
  $configurator->setEventDispatcher($dispatcher);

  $finder = new \Symfony\Component\Finder\Finder();
  $finder->files()->in(__DIR__ . '/commands/')->name('*.php'); # load commands from commands dir

  # Base namespace is 'Commands'

  $commandsLoader = (new FileSystemCommandsLoader($finder, new StandardNameResolver('Commands')));
  $configurator->setCommandsLoader($commandsLoader);

  $singleStateConfigurator = new SingleStateConfigurator();
  $configurator->setSingleStateConfigurator($singleStateConfigurator);

  # configure your app
  $consoleApp = new \Funivan\Console\ConsoleApplication();
  $configurator->configure($consoleApp);
  $consoleApp->run();
```

Testing
-------

[](#testing)

```
    ./vendor/bin/phpunit
```

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

[](#contributing)

Please see [CONTRIBUTING](https://github.com/funivan/Console/blob/master/CONTRIBUTING.md) for details.

Credits
-------

[](#credits)

- [funivan](https://github.com/funivan)
- [All Contributors](https://github.com/funivan/Console/contributors)

License
-------

[](#license)

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

###  Health Score

27

—

LowBetter than 47% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity19

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity51

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

Total

4

Last Release

3539d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/1ee14f8f97b3ead4c91823e410ea170293b55be64adf12a20d965f19008839a6?d=identicon)[funivan](/maintainers/funivan)

---

Top Contributors

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

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/funivan-console/health.svg)

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

###  Alternatives

[matomo/matomo

Matomo is the leading Free/Libre open analytics platform

21.7k38.9k](/packages/matomo-matomo)[friendsofphp/php-cs-fixer

A tool to automatically fix PHP code style

13.5k251.2M24.8k](/packages/friendsofphp-php-cs-fixer)[drupal/core

Drupal is an open source content management platform powering millions of websites and applications.

21866.0M1.7k](/packages/drupal-core)[sylius/sylius

E-Commerce platform for PHP, based on Symfony framework.

8.5k5.9M728](/packages/sylius-sylius)[phpro/grumphp

A composer plugin that enables source code quality checks.

4.3k16.7M1.0k](/packages/phpro-grumphp)[drupal/core-recommended

Locked core dependencies; require this project INSTEAD OF drupal/core.

6942.5M413](/packages/drupal-core-recommended)

PHPackages © 2026

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