Install Laravel 11

User
Install laravel 11 using composer
Assistant
To install **Laravel 11** using Composer, run the following command in your terminal:

composer create-project laravel/laravel:^11.0 project-name

Replace `project-name` with your desired folder name.

### ✅ Requirements for Laravel 11:
Make sure your environment meets the following minimum requirements:

– PHP >= 8.2
– Composer >= 2.5
– Required PHP extensions:
– OpenSSL
– PDO
– Mbstring
– Tokenizer
– XML
– Ctype
– JSON
– BCMath
– Fileinfo

### Example:

composer create-project laravel/laravel:^11.0 myapp

This will create a new Laravel 11 project in the `myapp` directory.

Let me know if you're using Docker or want to include Breeze, Jetstream, or other starter kits too.

Leave a Comment

Your email address will not be published. Required fields are marked *