Rename app.php to bin/dmg

(Drupal Module Generator)
This commit is contained in:
Oliver Davies 2020-02-09 19:06:22 +00:00
parent 8a6b3c5e78
commit 20a6a011d9
2 changed files with 3 additions and 2 deletions

View file

@ -1,4 +1,4 @@
# Drupal Module Generator
# Drupal Module Generator (dmg)
A scaffolding tool for generating new modules for Drupal 7 and 8.

View file

@ -1,3 +1,4 @@
#!/usr/bin/env php
<?php
use Opdavies\DrupalModuleGenerator\Command\GenerateDrupal7Command;
@ -5,7 +6,7 @@ use Opdavies\DrupalModuleGenerator\Service\TestNameConverter;
use Symfony\Component\Console\Application;
use Symfony\Component\Finder\Finder;
require_once __DIR__.'/vendor/autoload.php';
require_once __DIR__.'/../vendor/autoload.php';
$app = new Application();