feat(auth): configure Google OAuth credentials in .env.example and update socialite version in composer.json

This commit is contained in:
2026-07-22 12:00:38 -03:00
parent 87153b7839
commit 855ac13990
2 changed files with 6 additions and 1 deletions

View File

@@ -51,6 +51,11 @@ REDIS_HOST=127.0.0.1
REDIS_PASSWORD=null
REDIS_PORT=6379
GOOGLE_CLIENT_ID=...
GOOGLE_CLIENT_SECRET=...
GOOGLE_REDIRECT_URI=http://localhost:8000/auth/google/callback
MAIL_MAILER=smtp
MAIL_SCHEME=smtp
MAIL_HOST=smtp.gmail.com

View File

@@ -9,7 +9,7 @@
"php": "^8.3",
"laravel/framework": "^13.8",
"laravel/sanctum": "^4.3",
"laravel/socialite": "*",
"laravel/socialite": "^5.29",
"laravel/tinker": "^3.0",
"league/flysystem-aws-s3-v3": "^3.0"
},