
* - directory refactor * - readme.md update * Update readme.md Co-authored-by: Adrian Hopek <adrian.hopek@blumilk.pl> * Update readme.md Co-authored-by: Ewelina Lasowy <56546832+EwelinaLasowy@users.noreply.github.com> * Update readme.md Co-authored-by: Ewelina Lasowy <56546832+EwelinaLasowy@users.noreply.github.com> * Update readme.md Co-authored-by: Ewelina Lasowy <56546832+EwelinaLasowy@users.noreply.github.com> * Update readme.md Co-authored-by: Adrian Hopek <adrian.hopek@blumilk.pl> Co-authored-by: Ewelina Lasowy <56546832+EwelinaLasowy@users.noreply.github.com>
22 lines
506 B
PHP
Executable File
22 lines
506 B
PHP
Executable File
#!/usr/bin/env php
|
|
<?php
|
|
|
|
use Illuminate\Contracts\Console\Kernel;
|
|
use Symfony\Component\Console\Input\ArgvInput;
|
|
use Symfony\Component\Console\Output\ConsoleOutput;
|
|
|
|
define("LARAVEL_START", microtime(true));
|
|
|
|
require __DIR__ . "/vendor/autoload.php";
|
|
|
|
$app = require_once __DIR__ . "/bootstrap/app.php";
|
|
/** @var Kernel $kernel */
|
|
$kernel = $app->make(Kernel::class);
|
|
|
|
$input = new ArgvInput();
|
|
$status = $kernel->handle($input, new ConsoleOutput());
|
|
|
|
$kernel->terminate($input, $status);
|
|
|
|
exit($status);
|