Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

shanewatson08's avatar

shanewatson08 wrote a reply+100 XP

1d ago

Invite to upgrade the Laravel installer while creating a new Laravel application

This usually happens because the globally installed Laravel installer version is outdated.

You can upgrade it with:

composer global update laravel/installer

Or reinstall it completely:

composer global remove laravel/installer composer global require laravel/installer

After updating, verify the version:

laravel --version

Also make sure your Composer global bin directory is added to your system PATH.

For newer Laravel versions, you can alternatively create projects directly using Composer:

composer create-project laravel/laravel example-app

That method always pulls the latest Laravel release and avoids installer version mismatch issues.