for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace Packedge\Workbench\Generators;
use Illuminate\Filesystem\Filesystem;
use Mustache_Engine;
class ReadmeGenerator extends BaseGenerator implements GeneratorInterface
{
public function __construct(Filesystem $filesystem = null, Mustache_Engine $mustache = null)
parent::__construct($filesystem, $mustache);
$this->templatePath = 'readme.txt';
$this->outputPath = 'README.md';
}