Files
panel-pelican-dev/artisan

19 lines
425 B
Plaintext
Raw Normal View History

#!/usr/bin/env php
<?php
use Illuminate\Foundation\Application;
2024-03-19 16:49:42 -04:00
use Symfony\Component\Console\Input\ArgvInput;
2024-03-19 16:49:42 -04:00
define('LARAVEL_START', microtime(true));
2024-03-19 16:49:42 -04:00
// Register the Composer autoloader...
require __DIR__.'/vendor/autoload.php';
2024-03-19 16:49:42 -04:00
// Bootstrap Laravel and handle the command...
/** @var Application $app */
$app = require_once __DIR__.'/bootstrap/app.php';
$status = $app->handleCommand(new ArgvInput);
exit($status);