如何将私有 github 存储库添加为 Composer 依赖项
2022-08-30 10:15:59
我在我的Laravel 5.1项目composer.json中有以下内容,以添加一个公共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": "*",
},
...
只要存储库是公共的,这就有效。现在,我已将此存储库设置为私有。我用于拉/推送到“my_private_repo”的git凭据是该项目的合作者之一。如何实现在运行作曲家更新或作曲家安装时从该专用存储库中提取作曲家?