diff options
Diffstat (limited to 'workbench/bootstrap/app.php')
-rw-r--r-- | workbench/bootstrap/app.php | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/workbench/bootstrap/app.php b/workbench/bootstrap/app.php new file mode 100644 index 0000000..f8806ca --- /dev/null +++ b/workbench/bootstrap/app.php @@ -0,0 +1,18 @@ +<?php + +use Illuminate\Foundation\Application; +use Illuminate\Foundation\Configuration\Exceptions; +use Illuminate\Foundation\Configuration\Middleware; + +use function Orchestra\Testbench\default_skeleton_path; + +return Application::configure(basePath: $APP_BASE_PATH ?? default_skeleton_path()) + ->withRouting( + web: __DIR__.'/../routes/web.php', + ) + ->withMiddleware(function (Middleware $middleware) { + // + }) + ->withExceptions(function (Exceptions $exceptions) { + // + })->create(); |