I\'m trying out the PHP micro Framework Lumen (from Laravel).
One of my first steps was to look into the .env.example file and make a copy of it to have my
.env.example
For me the easiest way to generate a Lumen key is typing on console one of these commands:
date | md5 date | md5sum
or
openssl rand -base64 24
depending of your environment. In my case, I aways use date | md5 on mac
date | md5