pdns-console/app/propel/console
2015-02-23 01:01:29 +01:00

16 lines
316 B
PHP
Executable file

#!/usr/bin/env php
<?php
require_once __DIR__ . '/../../vendor/autoload.php';
use Deblan\Console\Application;
$app = new Application();
$app->chdir(__DIR__.'/../../');
$app->addCommandsPath('vendor/propel/propel/src/Propel/Generator/Command/', 'Propel\\Generator\\Command');
$app->loadCommands();
$app->run();