准备工作
假定你已经在本机安装完成了 brew / composer / php
检查环境变量
$echo $PATH | grep composer
#如果没有,添加环境变量
$export PATH=~/.composer/vendor/bin:$PATH
#检查一下
$echo $PATH | grep composer
/Users/yourname/.composer/vendor/bin:
全局安装Valet
$composer global require laravel/valet
Changed current directory to /Users/yourname/.composer
Using version ^2.14 for laravel/valet
./composer.json has been created
Loading composer repositories with package information
Updating dependencies (including require-dev)
Package operations: 22 installs, 0 updates, 0 removals
- Installing symfony/polyfill-php80 (v1.22.1): Loading from cache
- Installing symfony/polyfill-mbstring (v1.22.1): Loading from cache
- Installing symfony/polyfill-php72 (v1.22.1): Loading from cache
- Installing symfony/var-dumper (v4.4.21): Downloading (100%)
- Installing tightenco/collect (v8.0.4): Downloading (100%)
- Installing nategood/httpful (0.2.20): Downloading (100%)
- Installing symfony/process (v4.4.20): Loading from cache
- Installing psr/container (1.0.0): Loading from cache
- Installing php-di/invoker (2.0.0): Downloading (100%)
- Installing symfony/service-contracts (v1.1.9): Downloading (100%)
- Installing symfony/polyfill-php73 (v1.22.1): Loading from cache
- Installing symfony/console (v4.4.21): Loading from cache
- Installing mnapoli/silly (1.7.2): Downloading (100%)
- Installing psr/simple-cache (1.0.1): Loading from cache
- Installing symfony/translation-contracts (v1.1.10): Downloading (100%)
- Installing symfony/translation (v4.4.21): Downloading (100%)
- Installing nesbot/carbon (2.46.0): Downloading (100%)
- Installing doctrine/inflector (1.3.1): Downloading (100%)
- Installing illuminate/contracts (v5.8.36): Downloading (100%)
- Installing illuminate/support (v5.8.36): Downloading (100%)
- Installing illuminate/container (v5.8.36): Downloading (100%)
- Installing laravel/valet (v2.14.1): Downloading (100%)
symfony/service-contracts suggests installing symfony/service-implementation
symfony/console suggests installing symfony/event-dispatcher
symfony/console suggests installing symfony/lock
symfony/console suggests installing psr/log (For using the console logger)
symfony/translation suggests installing symfony/config
symfony/translation suggests installing symfony/yaml
illuminate/support suggests installing illuminate/filesystem (Required to use the composer class (5.8.*).)
illuminate/support suggests installing moontoast/math (Required to use ordered UUIDs (^1.1).)
illuminate/support suggests installing ramsey/uuid (Required to use Str::uuid() (^3.7).)
illuminate/support suggests installing vlucas/phpdotenv (Required to use the env helper (^3.3).)
Writing lock file
Generating autoload files
11 packages you are using are looking for funding.
Use the `composer fund` command to find out more!
Valet install
这将配置并安装 Valet 和 DnsMasq。此外,Valet 依赖的守护程序将配置为在系统启动时启动:
$valet install
Stopping nginx...
Installing nginx...
[nginx] is not installed, installing it now via Brew... 🍻
Installing nginx configuration...
Installing nginx directory...
Updating PHP configuration...
Restarting php@7.1...
Installing dnsmasq...
[dnsmasq] is not installed, installing it now via Brew... 🍻
Updating Dnsmasq configuration...
Restarting dnsmasq...
Valet is configured to serve for TLD [.test]
Restarting nginx...
Valet installed successfully!
结果测试
测试DnsMasq
$ping cc.test
PING cc.test (127.0.0.1): 56 data bytes
64 bytes from 127.0.0.1: icmp_seq=0 ttl=64 time=0.066 ms
64 bytes from 127.0.0.1: icmp_seq=1 ttl=64 time=0.180 ms
64 bytes from 127.0.0.1: icmp_seq=2 ttl=64 time=0.161 ms
park
切换到你本地的站点目录,例如我的目录是 ~/Sites
$cd ~/Sites
$valet park
支持Yii2
项目
下载驱动
由于 Valet
本身并不支持 Yii2
,因此我们需要自己写一个自定义驱动Laravel Valet 自定义站点驱动程序(learnku.com)。
当然,你也可以选择github上现成的的chinaphp/yii2-valet-driver: Yii2 Valet Driver (github.com)。
$cd ~/.config/valet/Drivers/
wget https://raw.githubusercontent.com/chinaphp/yii2-valet-driver/master/Yii2ValetDriver.php
如果没有wget,也可以使用curl -O
或者brew install wget
安装
链接Yii2
站点目录
valet link yii2-name
http://yii2-name.test
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。