├── .php_cs.dist.php ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json ├── config └── laravel-redis.php └── src ├── Auth └── UserProvider.php ├── Commands ├── LaravelRedisMakeCommand.php ├── RefreshSearchByCommand.php └── stubs │ └── model.stub ├── Contracts └── Model.php ├── LaravelRedisServiceProvider.php ├── Models ├── Model.php └── User.php └── Support ├── Auth.php ├── HasRelation.php └── Relations └── Relation.php /.php_cs.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilaliqbalr/laravel-redis/HEAD/.php_cs.dist.php -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilaliqbalr/laravel-redis/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilaliqbalr/laravel-redis/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilaliqbalr/laravel-redis/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilaliqbalr/laravel-redis/HEAD/composer.json -------------------------------------------------------------------------------- /config/laravel-redis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilaliqbalr/laravel-redis/HEAD/config/laravel-redis.php -------------------------------------------------------------------------------- /src/Auth/UserProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilaliqbalr/laravel-redis/HEAD/src/Auth/UserProvider.php -------------------------------------------------------------------------------- /src/Commands/LaravelRedisMakeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilaliqbalr/laravel-redis/HEAD/src/Commands/LaravelRedisMakeCommand.php -------------------------------------------------------------------------------- /src/Commands/RefreshSearchByCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilaliqbalr/laravel-redis/HEAD/src/Commands/RefreshSearchByCommand.php -------------------------------------------------------------------------------- /src/Commands/stubs/model.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilaliqbalr/laravel-redis/HEAD/src/Commands/stubs/model.stub -------------------------------------------------------------------------------- /src/Contracts/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilaliqbalr/laravel-redis/HEAD/src/Contracts/Model.php -------------------------------------------------------------------------------- /src/LaravelRedisServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilaliqbalr/laravel-redis/HEAD/src/LaravelRedisServiceProvider.php -------------------------------------------------------------------------------- /src/Models/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilaliqbalr/laravel-redis/HEAD/src/Models/Model.php -------------------------------------------------------------------------------- /src/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilaliqbalr/laravel-redis/HEAD/src/Models/User.php -------------------------------------------------------------------------------- /src/Support/Auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilaliqbalr/laravel-redis/HEAD/src/Support/Auth.php -------------------------------------------------------------------------------- /src/Support/HasRelation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilaliqbalr/laravel-redis/HEAD/src/Support/HasRelation.php -------------------------------------------------------------------------------- /src/Support/Relations/Relation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bilaliqbalr/laravel-redis/HEAD/src/Support/Relations/Relation.php --------------------------------------------------------------------------------