mirror of
https://github.com/HDInnovations/UNIT3D-Community-Edition.git
synced 2026-01-25 21:40:13 -06:00
- Laravel 11 introduces a new default application structure with fewer default files. Namely, new Laravel applications contain fewer service providers, middleware, and configuration files. However, it is not recommend that Laravel 10 applications upgrading to Laravel 11 attempt to migrate their application structure, as Laravel 11 has been carefully tuned to also support the Laravel 10 application structure.
16 lines
353 B
PHP
16 lines
353 B
PHP
#!/usr/bin/env php
|
|
<?php
|
|
|
|
use Symfony\Component\Console\Input\ArgvInput;
|
|
|
|
\define('LARAVEL_START', microtime(true));
|
|
|
|
// Register the Composer autoloader...
|
|
require __DIR__.'/vendor/autoload.php';
|
|
|
|
// Bootstrap Laravel and handle the command...
|
|
$status = (require_once __DIR__.'/bootstrap/app.php')
|
|
->handleCommand(new ArgvInput());
|
|
|
|
exit($status);
|