我的项目基于我建立的另一个“核心”项目。
我目前正在使用git subtree命令将这个“核心”项目添加到我的项目中。
有没有办法可以将项目添加为依赖项?我可以将其添加为(私人)包吗?
答案 0 :(得分:1)
如果您的core
项目已经有composer.json
,则可以从任何其他项目中获取该项目。
这是一个需要来自bitbucket repo的例子:
{
"require": {
"vendor/my-private-repo": "dev-master"
},
"repositories": [
{
"type": "vcs",
"url": "git@bitbucket.org:vendor/my-private-repo.git"
}
]
}
有关详情,请参阅using private repositories
上的作曲家文档