laravel安装程序-无法解决要求

laravel安装程序-无法解决要求,laravel,composer-php,Laravel,Composer Php,我使用的是流浪者(hashicorp/precise32) 我用它来尝试安装laravel安装程序 Problem 1 -laravel/installer v1.1.1 requires guzzlehttp/guzzle ~4.0 -> satisfiable by guzzlehttp/guzzle[...] -guzzlehttp/guzzle 4.2.3 requires php>=5.4.0 -> no matching package found 只要仔细

我使用的是流浪者(hashicorp/precise32)

我用它来尝试安装laravel安装程序

Problem 1
 -laravel/installer v1.1.1 requires guzzlehttp/guzzle ~4.0 -> satisfiable by guzzlehttp/guzzle[...]

 -guzzlehttp/guzzle 4.2.3 requires php>=5.4.0 -> no matching package found

只要仔细阅读错误消息,您就会发现问题:

Laravel安装程序需要guzzle http/guzzle。Guzzle要求php>=5.4.0(大于或等于5.4.0版)。没有找到这个


换句话说,您不符合PHP要求(您将正确使用PHP5.3.x)

您是对的-我假设我安装了最新版本的PHP,因为我在vagrant上运行它。非常感谢。
composer global require "laravel/installer=~1.1"