我正在尝试使用El Capitan在Mac上的Laravel 5.3 / Spark / Homebrew环境中使用Composer。作曲家脚本失败,出现以下错误:
Problem 1
- This package requires php >=5.6.4 but your PHP version (5.5.30) does not satisfy that requirement.
Problem 2
- laravel/framework v5.3.10 requires php >=5.6.4 -> your PHP version (5.5.30) does not satisfy that requirement.
因此,为了在我的Mac上升级已安装的PHP版本,我运行了以下命令:
curl -s http://php-osx.liip.ch/install.sh | bash -s 7.0
我重新启动并检查了php的版本
PHP 5.5.30 (cli) (built: Oct 23 2015 17:21:45)
Copyright (c) 1997-2015 The PHP Group
Zend Engine v2.5.0, Copyright (c) 1998-2015 Zend Technologies
➜ ~
有关如何在Mac上升级PHP版本的任何说明?
答案 0 :(得分:1)
原来我需要简单地编辑我的$ PATH。我正在使用〜/ .zshrc,只需要添加以下内容:
export PATH=/usr/local/php5/bin:$PATH