From eb5c48b58d72d04abb093fceb32db842ec7ab5fb Mon Sep 17 00:00:00 2001 From: Sam Light Date: Sat, 18 Jan 2025 20:17:47 +0000 Subject: Setup testing --- workbench/bootstrap/app.php | 19 +++++++++++++++++++ workbench/bootstrap/providers.php | 5 +++++ 2 files changed, 24 insertions(+) create mode 100644 workbench/bootstrap/app.php create mode 100644 workbench/bootstrap/providers.php (limited to 'workbench/bootstrap') diff --git a/workbench/bootstrap/app.php b/workbench/bootstrap/app.php new file mode 100644 index 0000000..6ead72a --- /dev/null +++ b/workbench/bootstrap/app.php @@ -0,0 +1,19 @@ +withRouting( + web: __DIR__.'/../routes/web.php', + commands: __DIR__.'/../routes/console.php', + ) + ->withMiddleware(function (Middleware $middleware) { + // + }) + ->withExceptions(function (Exceptions $exceptions) { + // + })->create(); diff --git a/workbench/bootstrap/providers.php b/workbench/bootstrap/providers.php new file mode 100644 index 0000000..3ac44ad --- /dev/null +++ b/workbench/bootstrap/providers.php @@ -0,0 +1,5 @@ +