summaryrefslogtreecommitdiff
path: root/workbench/bootstrap/app.php
diff options
context:
space:
mode:
authorSam Light <sam@lightscale.co.uk>2025-03-30 20:39:33 +0100
committerSam Light <samlight1994@gmail.com>2025-03-30 20:39:33 +0100
commite5d5fec5f782e6abf8628f3e1d11a8cbbe70a677 (patch)
tree8784cd8891b309624db0f28595394fc66f508104 /workbench/bootstrap/app.php
parentc9d238d8b8b19ed6e772348da1b91001cae3004a (diff)
Setup workbench
Diffstat (limited to 'workbench/bootstrap/app.php')
-rw-r--r--workbench/bootstrap/app.php18
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();