blob: 2576b40b75712632e52b91f22ba8000040fcaa05 (
plain)
1
2
3
4
5
6
7
8
|
<?php
// Bootstrap the autoload
require(realpath(dirname(__FILE__) . "/../") . '/' . 'vendor/autoload.php');
// Create new console
$console = new App\Script\Console;
$console->exec();
|