Skip to content

Instantly share code, notes, and snippets.

@tarikulcodes
Created February 28, 2025 13:32
Show Gist options
  • Save tarikulcodes/fc27d794f73c6d9ae7c53c2a87ac4476 to your computer and use it in GitHub Desktop.
Save tarikulcodes/fc27d794f73c6d9ae7c53c2a87ac4476 to your computer and use it in GitHub Desktop.
How to update laravel installer?

composer global update laravel/installer is not enough to upgrade the the desired version of laravel/installer, there might be package dependencies that restricts the upgrade to the latest. So try the below steps to upgrade to the latest.

Step 1: Uninstall the Package

composer global remove laravel/installer

Step 2: Reinstall

composer global update
composer global require laravel/installer
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment