1

我正在尝试使用 satis 为我的公司创建一个作曲家包存储库。我的 svn 存储库是通过 http (apache svn) 访问的。

我正在尝试将此添加到我的 config.json 的 satis

{
    "name": "packages",
    "homepage": "http://packages.example.org",
    "repositories": [
        { "type": "svn",
          "url": "myrepourl" 
       }

    ],
    "require-all": true
}

问题是我无法在存储库中进行身份验证:

Repository could  not be processed, svn: OPTIONS of  authorization failed. basic authentication rejected.

如何将用户名/密码传递给 satis?

谢谢

4

1 回答 1

0

根据作曲家文档,您必须将用户密钥文件或证书放在项目中,而不是在满足配置中:

使用 SSH:

{
    "repositories": [
        {
            "type": "composer",
            "url": "ssh2.sftp://example.org",
            "options": {
                "ssh2": {
                    "username": "composer",
                    "pubkey_file": "/home/composer/.ssh/id_rsa.pub",
                    "privkey_file": "/home/composer/.ssh/id_rsa"
                }
            }
        }
    ]
}

使用证书:

{
    "repositories": [
        {
            "type": "composer",
            "url": "https://example.org",
            "options": {
                "ssl": {
                    "cert_file": "/home/composer/.ssl/composer.pem",
                }
            }
        }
    ]
}
于 2013-03-05T09:18:54.613 回答