Generate a .info file
This commit is contained in:
parent
000716d670
commit
55ca3647c4
6 changed files with 255 additions and 69 deletions
5
app.php
5
app.php
|
@ -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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue