php-framework/artisan

14 lines
242 B
Text
Raw Normal View History

#!/usr/bin/env php
<?php
use Core\Boot;
use Symfony\Component\Console\Input\ArgvInput;
define('LARAVEL_START', microtime(true));
require __DIR__.'/vendor/autoload.php';
$status = Boot::app()->handleCommand(new ArgvInput);
exit($status);