Mercurial > borealpoint
annotate artisan @ 1:8971e685366b
inital simple dashboard
| author | luka |
|---|---|
| date | Sat, 23 Aug 2025 22:59:37 -0400 |
| parents | 9d7dcd54c677 |
| children |
| rev | line source |
|---|---|
| 0 | 1 #!/usr/bin/env php |
| 2 <?php | |
| 3 | |
| 4 use Illuminate\Foundation\Application; | |
| 5 use Symfony\Component\Console\Input\ArgvInput; | |
| 6 | |
| 7 define('LARAVEL_START', microtime(true)); | |
| 8 | |
| 9 // Register the Composer autoloader... | |
| 10 require __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 | |
| 18 exit($status); |
