Skip to content

despark/tart-cli

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Jam Tart CLI

Install

Install using Composer with:

composer require --dev despark/tart-cli

Setup

To add to your Symfony console application:

// Use needed classes and commands to load into the Console Application
use Symfony\Component\Console\Application;
use Despark\Command\Tart\GenerateCommand;
use Despark\Command\Tart\DeleteCommand;

// Create a new Console Application instance
$application = new Application();

// Attach commands to the Console Application instance
$application->add(new GenerateCommand);
$application->add(new DeleteCommand);

// Run the Console Application instance
$application->run();