1
0
Fork 0
mirror of https://github.com/prurigro/hypothetical.git synced 2025-01-02 13:56:28 -05:00
hypothetical/artisan

16 lines
350 B
Text
Raw Normal View History

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