我的包没有显示在搜索结果中,即使我可以将它与 composer 命令一起使用
My package does not show on search results, even if I can use it with composer command
昨天,我将我的代码推送到 github。我也想发布给composer,但是我发现了一个问题。
首先,我将我的 packagist 帐户与 github 帐户相关联。后来,我基于 github repo 创建了一个包。从现在开始,如果我在 composer.json:
中使用代码
"require": {
"mbajda/yahoo-weather": "dev-master"
}
我可以使用那个依赖项。但是当我打开 Packagist 页面并搜索该依赖项时,我得到 'no packages found' 文本。会出什么问题?不是私人包裹
{
"name": "mbajda/yahoo-weather",
"description": "Yahoo Weather API PHP Implementation",
"type": "library",
"license": "MIT",
"version": "1.0.0",
"keywords": ["api", "yahoo", "yahoo-weather", "weather"],
"minimum-stability": "stable",
"require": {
"php": ">=7.1.0"
},
"autoload": {
"psr-4": {
"YahooWeather\": "src/"
}
}
}
是Packagist的问题,今天已经解决了。
昨天,我将我的代码推送到 github。我也想发布给composer,但是我发现了一个问题。 首先,我将我的 packagist 帐户与 github 帐户相关联。后来,我基于 github repo 创建了一个包。从现在开始,如果我在 composer.json:
中使用代码"require": {
"mbajda/yahoo-weather": "dev-master"
}
我可以使用那个依赖项。但是当我打开 Packagist 页面并搜索该依赖项时,我得到 'no packages found' 文本。会出什么问题?不是私人包裹
{
"name": "mbajda/yahoo-weather",
"description": "Yahoo Weather API PHP Implementation",
"type": "library",
"license": "MIT",
"version": "1.0.0",
"keywords": ["api", "yahoo", "yahoo-weather", "weather"],
"minimum-stability": "stable",
"require": {
"php": ">=7.1.0"
},
"autoload": {
"psr-4": {
"YahooWeather\": "src/"
}
}
}
是Packagist的问题,今天已经解决了。