This repository has been archived on 2025-10-03. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
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();