我们已经使用FOSUserBundle很长一段时间了,效果很好。
我们目前使用的是Symfony v2.8.8,目前无法升级到Symfony v3.x.
最近在更新我们的生产环境时,我们在使用此命令执行composer update时收到错误:
php composer.phar update
。
错误是:
Updating friendsofsymfony/user-bundle (dev-master 42ad073 => v2.0.0-alpha3)
Update failed (Failed to execute git show-ref --head -d
sh: git: command not found)
Would you like to try reinstalling the package instead [yes]?
无论我们选择'是'还是'不',我们都会得到:
Removing friendsofsymfony/user-bundle (dev-master)
[RuntimeException]
Failed to execute git show-ref --head -d
sh: git: command not found
我们当前的composer.json设置为:
"friendsofsymfony/user-bundle": "~2.0@dev",
但是,我们尝试了许多不同的版本,包括各种v1.3版本。是否有其他东西(例如版本)我们应该将composer.json更改为或其他地方以使其再次运行?
欣赏输入。