Skip to content

rostenkowski/console

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Console

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