marcosadantas/expressive-console

This libs provides baseCommand for commands, command loader for symfony and service provider for zend service manager

Installs: 11

Dependents: 1

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/marcosadantas/expressive-console

1.0.0 2017-12-10 16:41 UTC

This package is auto-updated.

Last update: 2025-10-15 13:18:03 UTC


README

Expressive Console

Developers for developers, this lib have service provider for ServiceManager zend.

How use it:
composer require marcosadantas/expressive-console
Define Command:
class MigrationCommand extende ExpressiveConsole\BaseCommand
{
}
Configuration
// On service provider, or config file
[
    'commands' => [
        'migration:create' => MigrationCommand::class,
    ]
]

When install package service manage try to config it. if not can, add this array to configuration file providers:

ExpressiveConsole\ConfigProvider