#!/usr/bin/env php
<?php

if (file_exists(__DIR__ . '/../../../autoload.php')) {
    require __DIR__ . '/../../../autoload.php';
} else {
    require __DIR__ . '/../vendor/autoload.php';
}

$app = new Symfony\Component\Console\Application('Laravel Package Development Manager', '1.0.4');
$app->add(new Gogilo\Lpdm\Console\NewCommand);
$app->add(new Gogilo\Lpdm\Console\MakeControllerCommand);
// $app->add(new Gogilo\Lpdm\Console\MakeModelCommand);

$app->run();
