我的composer.json中有以下内容,对于熊/包,它正在选择替代的git存储库,但不适用于熊/骨架。对于熊/骨架,它从packagist获取主回购结帐da04548,而不是从 github.com/mackstar 帐户获取6b3bd0ae16。
有谁知道为什么这适用于一个存储库而不是另一个存储库?
提前谢谢。
{
"name": "mackstar/spout",
"description":"A BEAR.Sunday based CMS",
"keywords":[
"PHP",
"CMS"
],
"authors":[
{
"name": "Richard McIntyre"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/mackstar/BEAR.Skeleton"
},
{
"type": "vcs",
"url": "https://github.com/mackstar/BEAR.Package"
}
],
"require":{
"php":">=5.4.0",
"ext-curl":"*",
"bear/resource":"0.9.*",
"bear/skeleton":"dev-develop",
"bear/package":"dev-develop",
问题是新的 bear/package 在版本 dev-master
中引入了对 composer/installers
的要求,这是您的最低稳定性或要求所不允许的,因此无法安装该软件包。
如果将"composer/installers":"@dev"
添加到要求或"minimum-stability":"dev"
添加到顶层,则还应为此包选择自定义 git 存储库。