From b7ce2dea6fade65a4c8ebd0e56904a485338b807 Mon Sep 17 00:00:00 2001 From: Rico van Zelst Date: Wed, 20 Mar 2024 22:35:56 +0100 Subject: [PATCH] chore: Update .env.example and pint.json configurations - Updated APP_TIMEZONE to Europe/Amsterdam in .env.example - Changed SESSION_DRIVER from file to database in .env.example - Modified "preset" value to "laravel" in pint.json --- .env.example | 4 ++-- pint.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.env.example b/.env.example index 899e82b..caf5add 100644 --- a/.env.example +++ b/.env.example @@ -2,7 +2,7 @@ APP_NAME=Heimerdinger APP_ENV=local APP_KEY= APP_DEBUG=true -APP_TIMEZONE=UTC +APP_TIMEZONE=Europe/Amsterdam APP_URL=http://127.0.0.1:8000 APP_LOCALE=en @@ -49,7 +49,7 @@ BROADCAST_CONNECTION=log CACHE_STORE=file FILESYSTEM_DISK=local QUEUE_CONNECTION=sync -SESSION_DRIVER=file +SESSION_DRIVER=database SESSION_LIFETIME=120 SESSION_ENCRYPT=false SESSION_PATH=/ diff --git a/pint.json b/pint.json index ea5e72c..93061b6 100644 --- a/pint.json +++ b/pint.json @@ -1,3 +1,3 @@ { - "preset": "psr12" + "preset": "laravel" }