twigc/bin/twigc

20 lines
334 B
Plaintext
Raw Normal View History

2016-07-24 20:28:49 +02:00
#!/usr/bin/env php
<?php
/**
* This file is part of twigc.
*
* @author dana <dana@dana.is>
2016-07-24 20:28:49 +02:00
* @license MIT
*/
require_once __DIR__ . '/../src/bootstrap.php';
use Symfony\Component\Console\Output\ConsoleOutput;
use Dana\Twigc\Application;
2016-07-24 20:28:49 +02:00
$output = new ConsoleOutput();
$app = new Application();
exit($app->run($output));