annotate artisan @ 1:8971e685366b

inital simple dashboard
author luka
date Sat, 23 Aug 2025 22:59:37 -0400
parents 9d7dcd54c677
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
1 #!/usr/bin/env php
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
2 <?php
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
3
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
4 use Illuminate\Foundation\Application;
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
5 use Symfony\Component\Console\Input\ArgvInput;
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
6
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
7 define('LARAVEL_START', microtime(true));
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
8
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
9 // Register the Composer autoloader...
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
10 require __DIR__.'/vendor/autoload.php';
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
11
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
12 // Bootstrap Laravel and handle the command...
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
13 /** @var Application $app */
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
14 $app = require_once __DIR__.'/bootstrap/app.php';
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
15
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
16 $status = $app->handleCommand(new ArgvInput);
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
17
9d7dcd54c677 Initial Commit and package setup
luka
parents:
diff changeset
18 exit($status);