When I type laravel new blog
I get the following error.
In RequestException.php line 113:
Server error: GET http://cabinet.laravel.com/latest.zi
The latest Laravel installer will be essential to your workflow which includes support for Jetstream.
The new version also uses composer create-project behind the scenes instead of downloading an archive from Laravel’s build servers.
Update the latest version of laravel/installer with any of the following approaches:
^4.0
via composer require
composer global require "laravel/installer:^4.0"
composer global remove laravel/installer
composer global require laravel/installer
{
"require": {
"laravel/installer": "^4.0",
} }
composer global update
Verifying the Update
laravel --version
Click here to know more about updating the Laravel Installer