我用作曲家安装了
PHPUnit.每次我运行它,我都要
调用vendor / bin /
PHPunit.如何将vendor / bin放入路径,以便下次我只需要
调用PHPunit来运行它?
您可以将当前目录
添加到路径中.
对于Linux / Mac,将以下内容添加到.bash_profile中,Windows将类似,更改下面的行并将其添加到PATH中.
# include the current `vendor/bin` folder (Notice the `.` - This means current directory)
PATH="./vendor/bin:$PATH"
请记住重新启动终端或为bash_profile提供资源.
现在你应该能够运行:PHPunit并且它会在./vendor/bin中自动查找它,如果它存在,它将使用它执行.
原文链接:https://www.f2er.com/laravel/132970.html