Latest Symfony Console integration for Nette Framework
composer require rostenkowski/console
Register extension in config.neon
.
extensions:
console: Rostenkowski\Console\Extension
List your command in the console.commands
configuration section.
console:
commands:
foo: MyNamespace\FooCommand
Alternatively you can add your command as a service.
services:
fooCommand: MyNamespace\FooCommand