Back to Developer Roadmap

Creating a New Laravel Project

src/data/roadmaps/laravel/content/create-a-new-project@7NR5Dj24EFDsvea61_BTu.md

4.01.1 KB
Original Source

Creating a New Laravel Project

To start a new Laravel project, you'll typically use Composer, a dependency management tool for PHP. Open your terminal or command prompt, navigate to the directory where you want to create your project, and then run the command composer create-project laravel/laravel your-project-name. Replace your-project-name with the desired name for your project. This command downloads Laravel and all its dependencies, sets up the basic project structure, and prepares your development application.

Visit the following resources to learn more: