comparison artisan @ 0:9d7dcd54c677

Initial Commit and package setup
author luka
date Sat, 23 Aug 2025 22:20:51 -0400
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:9d7dcd54c677
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);