什么是valet?
Laravel Valet将Mac配置为在机器启动时始终在后台运行Nginx。然后,使用DnsMasq,Valet代理域上的所有请求以指向安装在本地计算机上的站点。
*.test
本机设备
- 系统版本:Mac OS X 10.14.1
安装
- 安装php5.6和7.1两个版本
1.brew install php@5.6
2.brew install php@7.1 - 安装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步骤
- valet stop
- 启动php5.6, brew services start php5.6
- 关闭php7.1, brew services stop php7.1
- brew unlink php71
- brew link --force php56
- valet restart
- php5.6切换到php7.1步骤
- valet stop
- 启动php7.1, brew services start php71
- 关闭php5.6, brew services stop php56
- brew unlink php56
- brew link --force php71
- valet restart