Generate a .info file

This commit is contained in:
Oliver Davies 2020-02-09 13:32:21 +00:00
parent 000716d670
commit 55ca3647c4
6 changed files with 255 additions and 69 deletions

View file

@ -2,13 +2,16 @@
use Opdavies\DrupalModuleGenerator\Command\GenerateDrupal7Command;
use Symfony\Component\Console\Application;
use Symfony\Component\Finder\Finder;
require_once __DIR__.'/vendor/autoload.php';
$app = new Application();
$finder = new Finder();
$app->addCommands([
new GenerateDrupal7Command(),
new GenerateDrupal7Command($finder),
]);
$app->run();