Single 53MB binary embedding PHP 8.4 ZTS runtime, Laravel 12, Livewire 4, and Octane worker mode inside a Wails v3 native desktop window. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
22 lines
586 B
PHP
22 lines
586 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
'driver' => env('SESSION_DRIVER', 'file'),
|
|
'lifetime' => env('SESSION_LIFETIME', 120),
|
|
'expire_on_close' => true,
|
|
'encrypt' => false,
|
|
'files' => storage_path('framework/sessions'),
|
|
'connection' => env('SESSION_CONNECTION'),
|
|
'table' => 'sessions',
|
|
'store' => env('SESSION_STORE'),
|
|
'lottery' => [2, 100],
|
|
'cookie' => env('SESSION_COOKIE', 'core_app_session'),
|
|
'path' => '/',
|
|
'domain' => null,
|
|
'secure' => false,
|
|
'http_only' => true,
|
|
'same_site' => 'lax',
|
|
'partitioned' => false,
|
|
];
|