当使用具有私有VCS的作曲家时,它无限地要求授权

时间:2014-02-20 22:43:48

标签: php composer-php

在我的composer.json中,我有一个私有的vcs存储库:

{
    "type": "vcs",
    "url": "https://github.com/username/repo.git"
}

当我致电php composer.phar update时,我得到以下内容:

Your GitHub credentials are required to fetch private repository metadata (https://github.com/username/repo.git)
The credentials will be swapped for an OAuth token stored in /root/.composer/config.json, your password will not be stored
To revoke access to this token you can visit https://github.com/settings/applications

Username: myusername
Password:
    Authentication required (api.github.com):
      Username: myusername
      Password:
    Authentication required (api.github.com):
      Username: myusername
      Password:
    Authentication required (api.github.com):
      Username:

无论我多少时间放入我的github凭据,它一直在问。如果我输错了它会做同样的事情,没有错误或最大尝试。

任何想法会导致什么?我通过运行:

使用最新版本作为可检索
php composer.phar self-update

周围工作

现在我已经去了https://github.com/settings/applications并手动生成令牌然后运行:

php composer.phar config -g github-oauth.github.com <token>

但我仍然想知道为什么它不能自动完成

2 个答案:

答案 0 :(得分:3)

这是因为当前版本的作曲家aa74818fe00c5f5eb57c1c38b807e9e2950c670c不支持GitHubs 2因素授权。因此,任何具有该设置的帐户都会遇到此问题。

已经为它创建了一个pull请求,并且应该很快进入即将发布的版本更新之一。

答案 1 :(得分:0)

我也遇到了这个问题,尝试向我的GitLab帐户添加和重新添加SSH密钥,没有任何区别。原来没有在计算机上安装git

apt-get install git

yum install git