2016-06-20 23:35:59 +10:00
|
|
|
#!/usr/bin/env php
|
|
|
|
<?php
|
|
|
|
|
2024-08-25 18:26:29 +10:00
|
|
|
use Symfony\Component\Console\Input\ArgvInput;
|
2019-11-08 23:08:34 +11:00
|
|
|
|
2024-08-25 18:26:29 +10:00
|
|
|
define('LARAVEL_START', microtime(true));
|
2016-06-20 23:35:59 +10:00
|
|
|
|
2024-08-25 18:26:29 +10:00
|
|
|
// Register the Composer autoloader...
|
2019-11-08 23:08:34 +11:00
|
|
|
require __DIR__.'/vendor/autoload.php';
|
2016-06-20 23:35:59 +10:00
|
|
|
|
2024-08-25 18:26:29 +10:00
|
|
|
// Bootstrap Laravel and handle the command...
|
|
|
|
$status = (require_once __DIR__.'/bootstrap/app.php')
|
|
|
|
->handleCommand(new ArgvInput);
|
2016-06-20 23:35:59 +10:00
|
|
|
|
|
|
|
exit($status);
|