在 https://github.com/yiisoft/jquery-pjax.git 的任何分支或标签中未找到有效的 bower.json
No valid bower.json was found in any branch or tag of https://github.com/yiisoft/jquery-pjax.git
您好,在全局安装您的包后,我在安装 composer 时遇到了一些问题。请参阅下面的错误
[Composer\Repository\InvalidRepositoryException]
No valid bower.json was found in any branch or tag of https://github.com/yiisoft/jquery-pjax.git, could not load a package from it
您需要尝试这些解决方案,通常它会被修复:
1) 如果您有防病毒软件,请将其关闭,因为它可能会阻止一些需要的端口。
2) 运行 这个命令在你的项目中 composer clear-cache
。
3) 如果第一个和第二个解决方案不起作用,则转到 /root/.composer
目录,创建文件 config.json
并将这些命令放入其中。
{
"config": {
"preferred-install": "dist",
"github-protocols": ["https","http"],
"github-oauth": {
"github.com": "YourGithubOauth"
}
}
}
然后再次清除缓存。我希望它的工作。
祝你好运。
您好,在全局安装您的包后,我在安装 composer 时遇到了一些问题。请参阅下面的错误
[Composer\Repository\InvalidRepositoryException]
No valid bower.json was found in any branch or tag of https://github.com/yiisoft/jquery-pjax.git, could not load a package from it
您需要尝试这些解决方案,通常它会被修复:
1) 如果您有防病毒软件,请将其关闭,因为它可能会阻止一些需要的端口。
2) 运行 这个命令在你的项目中 composer clear-cache
。
3) 如果第一个和第二个解决方案不起作用,则转到 /root/.composer
目录,创建文件 config.json
并将这些命令放入其中。
{
"config": {
"preferred-install": "dist",
"github-protocols": ["https","http"],
"github-oauth": {
"github.com": "YourGithubOauth"
}
}
}
然后再次清除缓存。我希望它的工作。
祝你好运。