t411-console/console

13 lines
184 B
Plaintext
Raw Normal View History

2015-02-10 01:17:29 +01:00
#!/usr/bin/env php
<?php
require_once __DIR__ . '/vendor/autoload.php';
use Console\Application;
$app = new Application();
2015-02-15 15:23:29 +01:00
2015-02-16 23:56:53 +01:00
$app->chdir(__DIR__);
$app->loadCommands();
$app->run();