diff options
Diffstat (limited to 'scripts/run.php')
-rw-r--r-- | scripts/run.php | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/scripts/run.php b/scripts/run.php index 2e9e21c..2576b40 100644 --- a/scripts/run.php +++ b/scripts/run.php @@ -1 +1,8 @@ -run.php +<?php + +// Bootstrap the autoload +require(realpath(dirname(__FILE__) . "/../") . '/' . 'vendor/autoload.php'); + +// Create new console +$console = new App\Script\Console; +$console->exec(); |