2015-10-23 14:11:44 -07:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
* This file is a part of Hathor
|
|
|
|
*
|
|
|
|
* Command line script entry to interact with Hathor
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Sikofitt\Hathor;
|
|
|
|
|
|
|
|
require 'vendor/autoload.php';
|
|
|
|
|
|
|
|
use Symfony\Component\Config;
|
|
|
|
use Symfony\Component\Console\Application;
|
|
|
|
use Sikofitt\Hathor\Command\ScannerCommand;
|
|
|
|
|
2015-10-26 06:30:19 -07:00
|
|
|
define('BASEDIR', dirname(__FILE__));
|
2015-10-23 14:11:44 -07:00
|
|
|
$app = new Application('Hathor', 'v0.0.1');
|
|
|
|
$app->add(new ScannerCommand());
|
|
|
|
$app->run();
|
|
|
|
|
|
|
|
|