Please. Does anybody know why Lumen's team removed the command php artisan serve
? That command was very helpful !.
Artisan is the command-line interface included with Lumen. It provides a number of helpful commands that can assist you while you build your application.
You need to run composer install , so the composer refresh all dependencies, artisan's begin on the middle. That should do the job!
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.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With