From 0d0dabdcad67e588b20d22b3c30f7838d1e7db1f Mon Sep 17 00:00:00 2001 From: Yisroel Baum Date: Wed, 29 Oct 2025 22:35:52 +0200 Subject: [PATCH] add public index file --- public/index.php | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 public/index.php diff --git a/public/index.php b/public/index.php new file mode 100644 index 0000000..95a7936 --- /dev/null +++ b/public/index.php @@ -0,0 +1,13 @@ + true, + 'cookie_secure' => !empty($_SERVER['HTTPS']), + 'cookie_samesite' => 'Lax', +]); + +require __DIR__.'/../vendor/autoload.php'; + +$app = require __DIR__.'/../bootstrap/app.php'; + + +$app->run();