customergauge/session

Native PHP Session adapter for Laravel Authentication

2.2.0 2023-04-24 21:28 UTC

This package is auto-updated.

Last update: 2024-03-26 17:19:43 UTC


README

Code Coverage Scrutinizer Code Quality

Laravel PHP Session ⛔

This library provides a NativeSessionUserProvider for Laravel.

Installation

composer require customergauge/session

Usage

Auth configuration

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',
        ],
    ],

Auth Middleware

Configure the auth middleware at App\Http\Kernel with 'auth:php'

UserFactory

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);