- PHP 7.4.x
- MySQL 8.0.x
- Composer installed
- Create user in MySQL with
username = root
and empty password - Create new database in mysql called
package
- Run
composer install
- Create a new file name
.env
based on the.env.example
file - Run
php artisan key:generate
- Run
php artisan migrate
to run migration - Run
php artisan db:seed
to run default seeder - Run
php artisan server
and the server will listen on http://127.0.0.1:8000