Add initial command skeleton

* Update dependencies
* Add twig formatters
* Update version command and add version to the package.json
* Update package.json with other project details
This commit is contained in:
Craig Davis
2014-01-12 08:05:09 -07:00
parent 7b909c6cf1
commit b403d712a1
12 changed files with 383 additions and 164 deletions

View File

@@ -0,0 +1,22 @@
<?php
namespace Resume\Command;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
class HtmlCommand extends Command
{
protected function configure()
{
$this
->setName('html')
->setDescription('Generate an HTML resume from a markdown file');
}
protected function execute(InputInterface $input, OutputInterface $output)
{
}
}
/* End of file HtmlCommand.php */