PHPackages                             tommyseus/zend-expressive-symfony-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. tommyseus/zend-expressive-symfony-console

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

tommyseus/zend-expressive-symfony-console
=========================================

This project adds a executable file to the composer bin folder to run symfony commands under a zend-expressive application environment.

v1.0.0(8y ago)11.7k3MITPHPPHP ^7.1

Since Feb 28Pushed 3y ago1 watchersCompare

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

READMEChangelog (1)Dependencies (4)Versions (2)Used By (0)

zend-expressive symfony console
===============================

[](#zend-expressive-symfony-console)

[![Latest Stable Version](https://camo.githubusercontent.com/132064bc25eb2648676687e9c2a06bc6eb28dd3e32d77024c610a125d62033eb/68747470733a2f2f706f7365722e707567782e6f72672f746f6d6d79736575732f7a656e642d657870726573736976652d73796d666f6e792d636f6e736f6c652f762f737461626c65)](https://packagist.org/packages/tommyseus/zend-expressive-symfony-console)[![License](https://camo.githubusercontent.com/f85a2fe4224de42646e3c7eaebe2dc8971499b7aa9b708f6667be805136fafb5/68747470733a2f2f706f7365722e707567782e6f72672f746f6d6d79736575732f7a656e642d657870726573736976652d73796d666f6e792d636f6e736f6c652f6c6963656e7365)](https://packagist.org/packages/tommyseus/zend-expressive-symfony-console)[![Build Status](https://camo.githubusercontent.com/e757a4a227ceb9e6ed0212a0f6650f2f7e9de1e42e8ce613c6d565de6144d72c/68747470733a2f2f7472617669732d63692e6f72672f746f6d6d79736575732f7a656e642d657870726573736976652d73796d666f6e792d636f6e736f6c652e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/tommyseus/zend-expressive-symfony-console)[![Coverage Status](https://camo.githubusercontent.com/d32c44387d4e8f3c55ef01f9e6c787d3920852a3d318890955bf79e603e2268e/68747470733a2f2f636f766572616c6c732e696f2f7265706f732f6769746875622f746f6d6d79736575732f7a656e642d657870726573736976652d73796d666f6e792d636f6e736f6c652f62616467652e7376673f6272616e63683d6d6173746572)](https://coveralls.io/github/tommyseus/zend-expressive-symfony-console?branch=master)

This project adds a executable file to the composer bin folder to run symfony commands under a zend-expressive application environment.

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

[](#installation)

### Requirements

[](#requirements)

- PHP 7.1
- a config/container.php file (returns a ContainerInterface instance)

### Composer installation

[](#composer-installation)

```
$ composer require tommyseus/zend-expressive-symfony-console
```

### Configuration

[](#configuration)

#### zend-expressive configuration

[](#zend-expressive-configuration)

Add the \\Seus\\Zend\\Expressive\\SymfonyConsole\\ConfigProvider to the config/config.php file.

#### Configuration of the symfony console application

[](#configuration-of-the-symfony-console-application)

- Add this configuration to your application config (ex.: config/autoload/ze-sf-console.global.php).
- It is recommended to define the command name.

```
[
    'seus-zend-expressive-symfony-console' => [
        'name' => 'Console Name',
        'version' => '1.0.0', // optional
        'commands' => [
            // add the command service names here
            // ex.: 'foo:bar' => Command::class, // recommended, lazy
            // ex.: Command::class, // not lazy
        ],
    ],

    'dependencies' => [
        'factories' => [
            // add commands as a service to the container
            // ex.: Command::class => CommandFactory::class,
        ],
    ],
],
```

Run commands
------------

[](#run-commands)

This module adds a executable file under the composer bin directory to execute symfony commands.

```
$ vendor/bin/ze-sf-console list
```

###  Health Score

29

—

LowBetter than 60% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity19

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity58

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

Unknown

Total

1

Last Release

2996d ago

### Community

Maintainers

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

---

Top Contributors

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

---

Tags

consoleexpressivesymfonyzend-expressivezendframeworkconsolesymfonyZendFrameworkzfexpressivezend-expressive

###  Code Quality

TestsPHPUnit

Code StylePHP CS Fixer

### Embed Badge

![Health badge](/badges/tommyseus-zend-expressive-symfony-console/health.svg)

```
[![Health](https://phpackages.com/badges/tommyseus-zend-expressive-symfony-console/health.svg)](https://phpackages.com/packages/tommyseus-zend-expressive-symfony-console)
```

###  Alternatives

[matthiasnoback/symfony-console-form

Use Symfony forms for Console command input

368264.8k8](/packages/matthiasnoback-symfony-console-form)[laminas/laminas-cli

Command-line interface for Laminas projects

563.7M54](/packages/laminas-laminas-cli)[contributte/console-extra

Nette-based console commands for latte, DIC, security, utils and many others

301.2M2](/packages/contributte-console-extra)[phlib/console-process

Console implementation.

1833.5k2](/packages/phlib-console-process)

PHPackages © 2026

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