├── .gitignore ├── LICENSE ├── Readme.md ├── composer.json ├── src └── RedisSessionHandler.php └── tests ├── Readme.md └── RedisSessionHandlerTest.php /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmitry-suffi/redis-session-handler/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmitry-suffi/redis-session-handler/HEAD/Readme.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmitry-suffi/redis-session-handler/HEAD/composer.json -------------------------------------------------------------------------------- /src/RedisSessionHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmitry-suffi/redis-session-handler/HEAD/src/RedisSessionHandler.php -------------------------------------------------------------------------------- /tests/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmitry-suffi/redis-session-handler/HEAD/tests/Readme.md -------------------------------------------------------------------------------- /tests/RedisSessionHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmitry-suffi/redis-session-handler/HEAD/tests/RedisSessionHandlerTest.php --------------------------------------------------------------------------------