├── LICENSE ├── README.md ├── composer.json ├── config └── redis-sentinel.php └── src ├── Configuration ├── HostNormalizer.php └── Loader.php ├── Connections └── PredisConnection.php ├── Connectors └── PredisConnector.php ├── Contracts └── Factory.php ├── Horizon ├── HorizonServiceBindings.php └── HorizonServiceProvider.php ├── Manager ├── Laravel540RedisSentinelManager.php ├── Laravel5420RedisSentinelManager.php ├── VersionedManagerFactory.php └── VersionedRedisSentinelManager.php ├── RedisSentinel.php ├── RedisSentinelManager.php └── RedisSentinelServiceProvider.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monospice/laravel-redis-sentinel-drivers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monospice/laravel-redis-sentinel-drivers/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monospice/laravel-redis-sentinel-drivers/HEAD/composer.json -------------------------------------------------------------------------------- /config/redis-sentinel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monospice/laravel-redis-sentinel-drivers/HEAD/config/redis-sentinel.php -------------------------------------------------------------------------------- /src/Configuration/HostNormalizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monospice/laravel-redis-sentinel-drivers/HEAD/src/Configuration/HostNormalizer.php -------------------------------------------------------------------------------- /src/Configuration/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monospice/laravel-redis-sentinel-drivers/HEAD/src/Configuration/Loader.php -------------------------------------------------------------------------------- /src/Connections/PredisConnection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monospice/laravel-redis-sentinel-drivers/HEAD/src/Connections/PredisConnection.php -------------------------------------------------------------------------------- /src/Connectors/PredisConnector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monospice/laravel-redis-sentinel-drivers/HEAD/src/Connectors/PredisConnector.php -------------------------------------------------------------------------------- /src/Contracts/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monospice/laravel-redis-sentinel-drivers/HEAD/src/Contracts/Factory.php -------------------------------------------------------------------------------- /src/Horizon/HorizonServiceBindings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monospice/laravel-redis-sentinel-drivers/HEAD/src/Horizon/HorizonServiceBindings.php -------------------------------------------------------------------------------- /src/Horizon/HorizonServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monospice/laravel-redis-sentinel-drivers/HEAD/src/Horizon/HorizonServiceProvider.php -------------------------------------------------------------------------------- /src/Manager/Laravel540RedisSentinelManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monospice/laravel-redis-sentinel-drivers/HEAD/src/Manager/Laravel540RedisSentinelManager.php -------------------------------------------------------------------------------- /src/Manager/Laravel5420RedisSentinelManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monospice/laravel-redis-sentinel-drivers/HEAD/src/Manager/Laravel5420RedisSentinelManager.php -------------------------------------------------------------------------------- /src/Manager/VersionedManagerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monospice/laravel-redis-sentinel-drivers/HEAD/src/Manager/VersionedManagerFactory.php -------------------------------------------------------------------------------- /src/Manager/VersionedRedisSentinelManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monospice/laravel-redis-sentinel-drivers/HEAD/src/Manager/VersionedRedisSentinelManager.php -------------------------------------------------------------------------------- /src/RedisSentinel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monospice/laravel-redis-sentinel-drivers/HEAD/src/RedisSentinel.php -------------------------------------------------------------------------------- /src/RedisSentinelManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monospice/laravel-redis-sentinel-drivers/HEAD/src/RedisSentinelManager.php -------------------------------------------------------------------------------- /src/RedisSentinelServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monospice/laravel-redis-sentinel-drivers/HEAD/src/RedisSentinelServiceProvider.php --------------------------------------------------------------------------------