Hacker News new | ask | show | jobs
by kbrannigan 909 days ago
Laravel is Nice I wish it's documentation was a full as Symfony's.

My personal pet peeve, too much docker.

2 comments

You don't need docker for Laravel. You will need PHP 8 and Composer (package manager) installed and then you can run:

    composer create-project laravel/laravel example-app
You can start a server by running

    php artisan serve
Yeah too much Docker for sure.