rostenkowski/console

There is no license information available for the latest version (v1.0.1) of this package.

v1.0.1 2017-10-08 14:02 UTC

This package is not auto-updated.

Last update: 2024-11-10 03:31:09 UTC


README

Latest Symfony Console integration for Nette Framework

Build Status Coverage Status Code Climate Scrutinizer Code Quality

Installation

composer require rostenkowski/console

Usage

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