Default setup of laravel environment

- Creating default laravel setup with composer
This commit is contained in:
2026-04-26 21:08:51 +02:00
parent 328d7f9c7a
commit 41e1d7ffb5
56 changed files with 10333 additions and 44 deletions
+18
View File
@@ -0,0 +1,18 @@
<?php
use Illuminate\Foundation\Application;
use Illuminate\Foundation\Configuration\Exceptions;
use Illuminate\Foundation\Configuration\Middleware;
return Application::configure(basePath: dirname(__DIR__))
->withRouting(
web: __DIR__.'/../routes/web.php',
commands: __DIR__.'/../routes/console.php',
health: '/up',
)
->withMiddleware(function (Middleware $middleware): void {
//
})
->withExceptions(function (Exceptions $exceptions): void {
//
})->create();