Lumen Micro Framework => php artisan key:generate

后端 未结 12 1115
遥遥无期
遥遥无期 2021-01-30 00:59

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

12条回答
  •  情话喂你
    2021-01-30 01:34

    To generate key and use laravel command you need to install one package. The details are as below:

    1. You have to install package composer require flipbox/lumen-generator
    2. You have to add $app->register(Flipbox\LumenGenerator\LumenGeneratorServiceProvider::class); into bootstrap/app.php file.

    Link: https://github.com/flipboxstudio/lumen-generator

提交回复
热议问题