drupal-module-generator/app.php

15 lines
263 B
PHP
Raw Normal View History

<?php
use Opdavies\DrupalModuleGenerator\Command\GenerateDrupal7Command;
use Symfony\Component\Console\Application;
require_once __DIR__.'/vendor/autoload.php';
$app = new Application();
$app->addCommands([
new GenerateDrupal7Command(),
]);
$app->run();