Hello @peterkidson
How did you install Laravel 13 and where do you see the report of Laravel 12?
And what is your PHP version? Laravel 13 needs PHP 8.3 while Laravel 12 support PHP 8.2. This can be a part of the reason, depending on the way you did create the project)
I think this usually happens if your PHP version is below 8.3 or Composer resolves an older version.
Check php -v and maybe try:
composer create-project laravel/laravel:^13.0 project-name
That should force Laravel 13
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.