- git clone lhttps://github.com/GENESDEMON/LUMEN-CRUD-API.git
- So remember to type cd projectName to move your terminal working location to the project file you just created
- composer install
- npm install ## or yarn
- cp .env.example .env
- php artisan key:generate
- If you check the .env file again, you will see that it now has a long random string of characters in the APP_KEY field. You now have a valid app encryption key.
- In the .env file fill in the DB_HOST, DB_PORT, DB_DATABASE, DB_USERNAME, and DB_PASSWORD options to match the credentials of the database you just created. This will allow you to run migrations and seed the database
- php artisan migrate
- php artisan db:seed
Laravel Lumen is a stunningly fast PHP micro-framework for building web applications with expressive, elegant syntax. We believe development must be an enjoyable, creative experience to be truly fulfilling. Lumen attempts to take the pain out of development by easing common tasks used in the majority of web projects, such as routing, database abstraction, queueing, and caching.
Documentation for the framework can be found on the Lumen website.
Thank you for considering contributing to Lumen! The contribution guide can be found in the Laravel documentation.
If you discover a security vulnerability within Lumen, please send an e-mail to Taylor Otwell at taylor@laravel.com. All security vulnerabilities will be promptly addressed.
The Lumen framework is open-sourced software licensed under the MIT license.