wallabag/console

14 lines
284 B
PHP
Executable File

#!/usr/bin/env php
<?php
set_time_limit(0);
require_once __DIR__.'/vendor/autoload.php';
require_once __DIR__.'/app/app.php';
$console = $app['console'];
$console->add(new Poche\Command\UnitTestsCommand());
$console->add(new Poche\Command\CreateSchemaCommand());
$console->run();