I'm starting to use Lumen and I'm thinking I should have gone with Laravel because of of the time I'm asking 'how do I do this in Lumen when it comes out of the box in Laravel.
@yadakhov
To use Lumen or not should not be decided based upon if you need what Lumen is missing so much as how much of Laravel don't you need. You may find you have to add a few things to Lumen to get the functionality you desire, but that can still be better than getting those few things included in Laravel with a bunch of other stuff you'll never use.
Hi, There is an Illuminate\Redis\RedisServiceProvider on illuminate/redis package.
Just try to register it on the bootstrap file and call it by
// register it
$app->configure('database');
$app->register(RedisServiceProvider::class);
// use it
app('redis')
// or
$app['redis']
//or
$this->app['redis']