Solution:
There is no built-in session support in Lumen. From the release notes:
… sessions and views are no longer included with the framework. If you need access to these features, you should use the full Laravel framework.
You should install the Laravel framework instead of Lumen and refer its docs on sessions.
Also, the default PHP sessions are still available.