When I type laravel new blog I get the following error.
In RequestException.php line 113:
Server error: GET http://cabinet.laravel.com/latest.zip resulted in a 522 Origin Connection Time-out response:
<html>
<head><title>522 Origin Connection Time-out</title></head>
<body bgcolor="white">
<center><h1>522 Origin Conne (truncated...)
Is the same error if I typ composer create-project --prefer-dist laravel/laravel blog.
And the link doesn't work if I try to go there.
Your Laravel installer is very out of date. The only way to get the latest version is to remove and install again:
composer global remove laravel/installer
composer global require laravel/installer
You need to update the installer to the latest version.
laravel-news.com/updating-the-laravel-installer
composer global require "laravel/installer:^4.0"
after update you check your version using: laravel --version and you should get output like Laravel Installer 4.0.3
try to update laravel/installer globally via:
composer global update laravel/installer
if it didn't work then you can try to remove and install it again:
composer global remove laravel/installer
composer global require laravel/installer
Check your PHP version:
php --version
It has to be >=7.3. If it isn't you have to upgrade your PHP version.
You can download the latest stable version here
If none of the above works, try this:
composer create-project --prefer-dist laravel/laravel name of your project
The simplest way to update to the next major version of the installer is via composer require to globally require it:
composer global require "laravel/installer:^4.0"
Worked for me.
Do this:
composer create-project laravel/laravel example-app
if the following fails:
composer global remove laravel/installer
composer global require laravel/installer
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:
Update to ^4.0 via composer require
composer global require "laravel/installer:^4.0"
Uninstall and Re-install the package via Composer
composer global remove laravel/installer
composer global require laravel/installer
Update the global composer.json file and run composer update
{
"require": {
"laravel/installer": "^4.0",
} }
composer global update
Verifying the Update
laravel --version
Click here to know more about updating the Laravel Installer
Am putting this issue here it may help somebody. I was using Ubuntu 20.04 and this is my approach.
i installed an older version of laravel using the command below.
composer global require "laravel/installer=~1.1"
this fixed my $PATH
keep in mind that this installs an older version of laravel.
After all the above i removed the laravel using the command below
composer global remove laravel/installer
then re-installed it using the command below
composer global require laravel/installer
With all this done you should be running your laravel just fine plus it will be up-to-date.
The workaround of this problem is getting latest version of Laravel Installer as per New Laravel Installer via composer global require "laravel/installer:^4.0"
verify the version using $ laravel -v
It should return "Laravel Installer 4.1.0"
If you use laravel homestead, maybe you should update the box itself.
Dont forget to backup your databases.
From the directory where Homestead is installed, run the update command:
vagrant box update
vagrant destroy
vagrant up
For a more detailed description, see: How to update your Laravel Homestead Box
You can run this command for install requirements of laravel installer with laravel installer:
$ composer global require laravel/installer -W
update your composer in case you have an older version by running this command composer self-update
then run this command composer global require laravel/installer to update the laravel installer.
happy coding.
Another issue I was having is that my env variable for Composer\vendor\bin was stored within a windows.old folder and I could not find username/AppData in the normal place. Make sure you show all hidden folders and select the bin folder from the right root folders.
Just try this:
It will definitely work
composer create-project laravel/laravel project_name
I had similar problem, and although I had tried this :composer create-project laravel/laravel {directory} 4.2 --prefer-dist
What I realised is that the above command is that it would only temporarily resolve the issue ,with regard specifically to the new project that you have created.But it would not resolve for your other new projects.
The correct commands to resolve your problem completely are these two:-
composer global remove laravel/installer
composer global require laravel/installer
What I realised is that you can copy-paste the two commands at the same time,but you will need to click enter button after the "remove command " {first command } has finished, so that the second command can run...remember.
After leaving the two to successfully complete, use the command,laravel -v, e.g C:\xampp\php>laravel -v , to check your update version of the laravel installer.You should be able to see something like :Laravel Installer 4.2.8
Thanks to these commands my issue was resolved.
I used this command for installing Laravel:
composer global require "laravel/installer"
For creating a project I use :
laravel new project
Today Laravel 5.7 was released, and I'm looking for installing it using the laravel command but I couldn't do it. Instead, a new laravel project was created with Laravel 5.6.33. I need some help.
Note: I can create a project with Laravel 5.7 with this command, but I need to update my required Laravel and make a project with laravel 5.7 by using the laravel command:
composer create-project --prefer-dist laravel/laravel blog
If you want to globally update Laravel to the new version just run
composer global require laravel/installer`
to update globally
Update your laravel/framework dependency to 5.7.* in your composer.json file.
Run this command
composer update
composer create-project --prefer-dist laravel/laravel blog
Try this to update laravel installer on global level:
composer global update
I think that Laravel 5.7 Installation Documentation, has the exact instructions for your problem.
Install the Laravel Installer via composer: composer global require "laravel/installer"
Run the command: laravel new <project-name>
try this command
composer create-project --prefer-dist laravel/laravel blog "5.7.*"
I try to install Laravel 5.5 version so I run command:
composer create-project laravel/laravel test 5.5.*
but I got this error:
If you see the top of image I run command php -v and its clear that version i 7.0.27
How to solve my issue?
You can try to update your composer:
composer update
Or try to use the full php7 path, example:
/path/to/your/php7 composer.phar create-project laravel/laravel test 5.5.*
Seem your XAMPP not installed properly. Uninstall existing XAMPP and manually delete the entire folder. (take backup of htdocs if there s some files as well PHPmyadmin DB backups). And download XAMPP from here and install it.
Install composer
and run this
composer create-project --prefer-dist laravel/laravel test
It's PHP7, so composer install Laravel 5.5 or higher by-default
I had this issue and the problem was that an after php upgrade there was still two php versions running almost together, so, in my case composer was using one version of php and laravel use the other. To solve that problem i uninstalled all php versions, update my php repositories and then i made a fresh install of php, composer and laravel.
Nowadays I have laravel 5.5 running with php 7.2 and i added laravel in enviroment variables so when i need to creaste a new project i use laravel new project_name
Hope this helps you!
Don't specify a version for project
composer create-project --prefer-dist laravel/laravel test
By any chance is the PHP require value in composer.json not "php": ">=7.0.0"
Try adding --prefer-dist and remove 5.5.*
Laravel requires PHP >= 7.0.0, you currently have version 5.6.
Install a newer version of PHP or use homestead.
My problem is that not all server run PHP 5.6 or above.
So I need use a older version of CakePHP 3.1.* that support PHP 5.5.*/5.4.* .
The problem is the Composer install solution:
composer create-project --prefer-dist cakephp/app:3.1.9 demo
Gives me an error:
Could not find package cakephp/app with version 3.1.9
I have tried other version (3.1.11/12/10) without success.
Is there a way or do I need to download the releases manually from GitHub every time?
cakephp/app is a different repository from cakephp/cakephp. So it follows it's own versioning.
cakephp/app is a template/skeleton that you can use to create your app. While cakephp/cakephp is the main core.
Check below for the cakephp/app:
https://github.com/cakephp/app
https://github.com/cakephp/app/releases
I guess you could use the version 3.1.2 of cakephp/app that allows you to have PHP >= 5.4
https://github.com/cakephp/app/blob/3.1.2/composer.json#L8
I have seen there is a new version of Laravel- 4.1 with new documentation in the laravel website. Few things have changed , really but i would like to continue using laravel version 4 for now. Is there any way i can do to install the version 4 and not 4.1 through composer? I'm asking that because version 4.1 is downloaded automatically whenever i run composer create-project laravel/laravel --pref destination in my terminal
You can specify version number after your destination
composer create-project laravel/laravel --prefer-dist 4.0
Composer documentation here
Even better if you add an asterisk after version number (4.2.*): the newest subversion will be installed e.g. 4.2.12 instead of 4.2.0
composer create-project laravel/laravel project-name --prefer-dist 4.2.*