Update dependencies

This commit is contained in:
Jonny Barnes 2025-10-30 11:49:54 +00:00
commit 273bdbbb49
Signed by: jonny
SSH key fingerprint: SHA256:CTuSlns5U7qlD9jqHvtnVmfYV3Zwl2Z7WnJ4/dqOaL8
5 changed files with 1330 additions and 842 deletions

View file

@ -4,6 +4,7 @@ use App\Http\Middleware\LinkHeadersMiddleware;
use Illuminate\Foundation\Application;
use Illuminate\Foundation\Configuration\Exceptions;
use Illuminate\Foundation\Configuration\Middleware;
use Spatie\LaravelFlare\Facades\Flare;
return Application::configure(basePath: dirname(__DIR__))
->withRouting(
@ -24,5 +25,5 @@ return Application::configure(basePath: dirname(__DIR__))
]);
})
->withExceptions(function (Exceptions $exceptions) {
//
Flare::handles($exceptions);
})->create();