gpt4 book ai didi

php - 如何将私有(private) github 存储库添加为 Composer 依赖项

转载 作者:IT王子 更新时间:2023-10-28 23:56:14 24 4
gpt4 key购买 nike

我的 Laravel 5.1 项目 composer.json 中有以下内容,用于添加公共(public) github 存储库作为依赖项。

...    
"repositories": [
{
"type": "package",
"package": {
"name": "myVendorName/my_private_repo",
"version": "1.2.3",
"source": {
"type" : "git",
"url" : "git://github.com/myVendorName/my_private_repo.git",
"reference" : "master"
},
"dist": {
"url": "https://github.com/myVendorName/my_private_repo/archive/master.zip",
"type": "zip"
}
}
}
],
"require": {
....
"myVendorName/my_private_repo": "*",
},
...

只要存储库是公开的,它就可以工作。现在我已将此存储库设置为私有(private)。我用于 pull/推到“my_private_repo”的 git 凭据是该项目的合作者之一。当我运行 composer updatecomposer install 时,如何实现 composer 从该私有(private)存储库中提取?

最佳答案

在 GitHub 和 BitBucket 上使用私有(private)存储库:

JSON

{
"require": {
"vendor/my-private-repo": "dev-master"
},
"repositories": [
{
"type": "vcs",
"url": "git@bitbucket.org:vendor/my-private-repo.git"
}
]
}

唯一的要求是为 git 客户端安装 SSH key 。

Docs

关于php - 如何将私有(private) github 存储库添加为 Composer 依赖项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40619393/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com