├── .github └── workflows │ └── ci.yml ├── LICENSE ├── composer.json ├── phpunit.xml └── src ├── RedisSessionHandler.php └── SavePathParser.php /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1ma/RedisSessionHandler/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1ma/RedisSessionHandler/HEAD/LICENSE -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1ma/RedisSessionHandler/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1ma/RedisSessionHandler/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/RedisSessionHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1ma/RedisSessionHandler/HEAD/src/RedisSessionHandler.php -------------------------------------------------------------------------------- /src/SavePathParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1ma/RedisSessionHandler/HEAD/src/SavePathParser.php --------------------------------------------------------------------------------