this repo has no description
1#!/usr/bin/env php
2<?php
3
4use Illuminate\Foundation\Application;
5use Symfony\Component\Console\Input\ArgvInput;
6
7define('LARAVEL_START', microtime(true));
8
9// Register the Composer autoloader...
10require __DIR__.'/vendor/autoload.php';
11
12// Bootstrap Laravel and handle the command...
13/** @var Application $app */
14$app = require_once __DIR__.'/bootstrap/app.php';
15
16$status = $app->handleCommand(new ArgvInput);
17
18exit($status);