#!/usr/bin/env php <?php define('LARAVEL_START', microtime(true)); /* |-------------------------------------------------------------------------- | 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 | loading of any our classes "manually". Feels great to relax. | */ $autoloader = require file_exists(__DIR__.'/vendor/autoload.php') ? __DIR__.'/vendor/autoload.php' : __DIR__.'/../../autoload.php'; $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); $status = $kernel->handle( $input = new Symfony\Component\Console\Input\ArgvInput, new Symfony\Component\Console\Output\ConsoleOutput ); /* |-------------------------------------------------------------------------- | Shutdown The Application |-------------------------------------------------------------------------- | | Once Artisan has finished running, we will fire off the shutdown events | 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);
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
.git | Folder | 0755 |
|
|
.github | Folder | 0755 |
|
|
app | Folder | 0755 |
|
|
art | Folder | 0755 |
|
|
bootstrap | Folder | 0755 |
|
|
builds | Folder | 0755 |
|
|
config | Folder | 0755 |
|
|
resources | Folder | 0755 |
|
|
storage | Folder | 0755 |
|
|
tests | Folder | 0755 |
|
|
.editorconfig | File | 235 B | 0644 |
|
.gitattributes | File | 676 B | 0644 |
|
.gitignore | File | 61 B | 0644 |
|
CHANGELOG.md | File | 8.11 KB | 0644 |
|
LICENSE.md | File | 1.07 KB | 0644 |
|
README.md | File | 1.94 KB | 0644 |
|
RELEASE.md | File | 315 B | 0644 |
|
box.json | File | 411 B | 0644 |
|
composer.json | File | 1.67 KB | 0644 |
|
composer.lock | File | 289.23 KB | 0644 |
|
phpstan.neon | File | 204 B | 0644 |
|
phpunit.xml.dist | File | 799 B | 0644 |
|
pint | File | 1.79 KB | 0644 |
|
pint.json | File | 57 B | 0644 |
|