AspireCloud/public/index.php
Chuck Adams c19c1c0f8b
use php-cs-fixer for formatting (#29)
* fix(build): rm key:generate in check-env target

The docker container is guaranteed to not be running at this point.  keygen happens last in the process.

* qa: switch from pint to php-cs-fixer

* ci: use make in run-checks action

* ci: run checks directly on the gh runner instance

* ci: use shivammathur/setup-php@v2

* style: run make fix

* ci: add unit tests to run-checks action
2024-10-19 09:42:52 -06:00

17 lines
474 B
PHP

<?php
use Illuminate\Http\Request;
define('LARAVEL_START', microtime(true));
// Determine if the application is in maintenance mode...
if (file_exists($maintenance = __DIR__ . '/../storage/framework/maintenance.php')) {
require $maintenance;
}
// Register the Composer autoloader...
require __DIR__ . '/../vendor/autoload.php';
// Bootstrap Laravel and handle the request...
(require_once __DIR__ . '/../bootstrap/app.php')
->handleRequest(Request::capture());