firefly-iii/artisan

54 lines
1.7 KiB
Plaintext
Raw Normal View History

2015-02-05 21:39:52 -06:00
#!/usr/bin/env php
<?php
2017-09-09 14:57:24 -05:00
define('LARAVEL_START', microtime(true));
2015-02-05 21:39:52 -06:00
/*
|--------------------------------------------------------------------------
| Register The Auto Loader
|--------------------------------------------------------------------------
|
| Composer provides a convenient, automatically generated class loader
| for our application. We just need to utilize it! We'll require it
| into the script here so that we do not have to worry about the
2023-07-11 04:45:55 -05:00
| loading of any of our classes manually. It's great to relax.
2015-02-05 21:39:52 -06:00
|
*/
2017-09-09 14:57:24 -05:00
require __DIR__.'/vendor/autoload.php';
2015-02-05 21:39:52 -06:00
$app = require_once __DIR__.'/bootstrap/app.php';
/*
|--------------------------------------------------------------------------
| Run The Artisan Application
|--------------------------------------------------------------------------
|
| When we run the console application, the current CLI command will be
| executed in this console and the response sent back to a terminal
| or another output device for the developers. Here goes nothing!
|
*/
$kernel = $app->make(Illuminate\Contracts\Console\Kernel::class);
2015-02-05 21:39:52 -06:00
$status = $kernel->handle(
2023-09-19 23:36:43 -05:00
$input = new Symfony\Component\Console\Input\ArgvInput(),
new Symfony\Component\Console\Output\ConsoleOutput()
2015-02-05 21:39:52 -06:00
);
/*
|--------------------------------------------------------------------------
| Shutdown The Application
|--------------------------------------------------------------------------
|
2017-09-09 14:57:24 -05:00
| Once Artisan has finished running, we will fire off the shutdown events
2015-02-05 21:39:52 -06:00
| so that any final work may be done by the application before we shut
| down the process. This is the last thing to happen to the request.
|
*/
$kernel->terminate($input, $status);
exit($status);