Please. Does anybody know why Lumen's team removed the command php artisan serve
? That command was very helpful !.
Why don't you use PHP's built-in web server which comes out of the box when you install PHP onto your computer?
Just get into the root directory of your Lumen app and type the following, so your project will be served locally.
php -S localhost:8000 -t ./public
Note: This PHP built-in web server is intended only for Development environment.