我有一个git repo https://github.com/hounded/FPDFbundle
我已将它添加到packagist https://packagist.org/packages/hounded/fpdfbundle
你可以在git repo上看到composer.json
{
"name" : "hounded/fpdfbundle",
"description" : "A pdf bundle",
"type" : "symfony-bundle",
"authors" : [{
"name" : "James Whiteman"
}],
"keywords" : ["pdf bundle"],
"license" : ["MIT"],
"require" : {
"symfony/framework-bundle": "~2.3",
"sensio/framework-extra-bundle": "~3.0,>=3.0.2"
},
"autoload" : {
"psr-0" : {
"hounded\\FPDFBundle" : ""
}
},
"target-dir" : "hounded/FPDFBundle",
"extra" : {
"branch-alias" : {
"dev-master" : "0.1.x-dev"
}
},
"minimum-stability": "dev"
}
然而,当我跑
时composer require hounded/fpdfbundle
我得到"找不到包hounded / fpdfbundle"
我想帮助社区,但我对我做错了什么感到难过
答案 0 :(得分:2)
您的github repo不包含任何标签。当github repo不包含标签时,packageist将“dev”设置为您的包的默认版本。 Composer有一些最低稳定性标准,除非您在composer.json文件中明确指定,否则它不会安装版本为“dev”的软件包。因此,要解决此问题,请使用类似
之类的内容向您的github存储库添加版本号标记git tag -a 1.0.0
然后将更改推送到您的公共回购。推送后,packageist将扫描更改并检测版本/标记并将其设置为活动版本。