marcosadantas/expressive-console

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

1.0.0 2017-12-10 16:41 UTC

This package is auto-updated.

Last update: 2024-04-15 10:12:41 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