This library provides a NativeSessionUserProvider for Laravel.
composer require customergauge/session
In the auth.php
file, add the following settings:
Default Guard
'defaults' => [
'guard' => 'php',
'passwords' => 'users',
],
The new Guard configuration
'guards' => [
'php' => [
'driver' => \CustomerGauge\Session\NativeSessionGuard::class,
'provider' => \CustomerGauge\Session\NativeSessionUserProvider::class,
'domain' => '.app.mydomain.com',
'storage' => 'tcp://my.redis.address:6379',
],
],
Configure the auth
middleware at App\Http\Kernel
with 'auth:php'
The last thing you'll need is to provide your own implementation of UserFactory
and register it in a ServiceProvider.
final class NativeSessionUserFactory implements UserFactory
{
public function make(array $session): ?Authenticatable
{
// $session here is the same as $_SESSION
return new MyUserObject(
$session['id'],
$session['my_user_attribute'],
);
}
}
In the provider:
$this->app->bind(CustomerGauge\Session\Contracts\UserFactory, App\Auth\NativeSessionUserFactory::class);