因此,我正在创建一个composer程序包,我正在尝试建立最佳的工作流程,以便能够在本地路径/符号链接存储库定义和git定义之间快速切换。
这是我的作曲家的样子:
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
},
{
"url": "git@bitbucket.org:hubmdp/package.git",
"type": "git"
},
{
"type": "path",
"url": "../package",
"options": {
"symlink": true
}
}
],
然后我只需要包装。我想要做的基本上是告诉作曲家安装路径版本,以便我可以在本地工作,但默认情况下需要git版本。
希望这是有道理的。
谢谢。