在安装thinkPHP的时候,使用命令
composer create-project topthink/think=5.1.* tp5
提示上面的错误;错误提示:zsh: no matches found: 5.1.*
暂时的解决办法:
指定确定的版本号,不要使用 * 这种
composer create-project topthink/think=5.1.31 tp5
在安装thinkPHP的时候,使用命令
composer create-project topthink/think=5.1.* tp5
提示上面的错误;错误提示:zsh: no matches found: 5.1.*
暂时的解决办法:
指定确定的版本号,不要使用 * 这种
composer create-project topthink/think=5.1.31 tp5