valet开发环境安装和php多版本切换

什么是valet?

Laravel Valet将Mac配置为在机器启动时始终在后台运行Nginx。然后,使用DnsMasq,Valet代理域上的所有请求以指向安装在本地计算机上的站点。*.test

本机设备

  • 系统版本:Mac OS X 10.14.1

安装

  • 安装php5.6和7.1两个版本
    1.brew install [email protected]
    2.brew install [email protected]
  • 安装Composer
  • 安装valet
    1.composer global require laravel/valet~/.composer/vendor/bin
    2.valet install
    具体安装步骤可以参考:https://laravel.com/docs/5.7/valet#serving-sites

版本切换

  • php7.1切换到php5.6步骤
    1. valet stop
    2. 启动php5.6, brew services start php5.6
    3. 关闭php7.1, brew services stop php7.1
    4. brew unlink php71
    5. brew link --force php56
    6. valet restart
  • php5.6切换到php7.1步骤
    1. valet stop
    2. 启动php7.1, brew services start php71
    3. 关闭php5.6, brew services stop php56
    4. brew unlink php56
    5. brew link --force php71
    6. valet restart

你可能感兴趣的:(valet开发环境安装和php多版本切换)