golem / auth-storage-symfony
Symfony Session storage adapter for Golem Auth
5.0.0
2023-02-15 20:33 UTC
Requires
- php: 7.4.*|8.*
- golem/auth: ^3.0
- symfony/http-foundation: ^5.4|^6.2
Requires (Dev)
- phpunit/phpunit: ^9.6
- squizlabs/php_codesniffer: ^3.7
README
Symfony Session storage adapter for Golem Auth
Install
Via Composer
$ composer require golem/auth-storage-symfony
Usage
Follow the documentation on Golem Auth to create a user model and a user repository class.
use ; use Symfony\Component\HttpFoundation\Session\Session; use Symfony\Component\HttpFoundation\Session\Storage\NativeSessionStorage; use Symfony\Component\HttpFoundation\Session\Storage\Handler\NativeFileSessionHandler; // configure the symfony session as usual $session_storage = new NativeSessionStorage(array(), new NativeFileSessionHandler()); $session = new Session($session_storage); $storage = new \Golem\Auth\Storage\SymfonySessionStorage($session); // get an instance of your user repository however you need to $userRepository = new UserRepository($database_connection); $auth = new \Golem\Auth($storage, $userRepository);
Testing
$ composer test
License
The MIT License (MIT). Please see License File for more information.