Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
**Laravel 11** için environment değişkenleri şu şekilde olacak:
```
SESSION_SECURE_COOKIE=true
SESSION_SAME_SITE=None
SESSION_SAME_SITE=Lax # ya da SESSION_SAME_SITE=None deneyiniz.
```
**Laravel 10, 9, 8** için ise
1. Environment'da `SESSION_SECURE_COOKIE=true` yapılacak
Expand All @@ -85,7 +85,7 @@
# /config/session.php:
return [
// ...
'same_site' => 'none',
'same_site' => 'lax', # ya da 'none' deneyiniz.
]
```
_Değişikliklerden sonra var olan session'i silip yeni session oluşturunuz._
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
],
"require": {
"php": ">=7.4",
"illuminate/config": "^8.0|^9.0|^10.0|^11.0",
"illuminate/support": "^8.0|^9.0|^10.0|^11.0",
"illuminate/config": "^8.0|^9.0|^10.0|^11.0|^12.0",
"illuminate/support": "^8.0|^9.0|^10.0|^11.0|^12.0",
"mews/pos": "^1.3"
},
"require-dev": {
Expand Down