0

有人可以知道如何解决这个错误:

                   Your requirements could not be resolved to an installable set of packages.

 Problem 1
- The requested package friendsofsymfony/facebook-bundle could not be found in any 
  version, there may be a typo in the package name.

Potential causes:
 - A typo in the package name
 - The package is not available in a stable-enough version according to your minimum-
   stability setting
  see <https://groups.google.com/d/topic/composer-dev/_g3ASeIFlrc/discussion> for more 
  details.

  Read <http://getcomposer.org/doc/articles/troubleshooting.md> for further common 
  problems.

当我尝试在 Symfony 2.1.6 中安装 FacebookBunle 时出现此错误:

php composer.phar update friendsofsymfony/facebook-bundle
4

2 回答 2

1

您的最低稳定性设置是多少?正如您在Packagist中看到的(还没有)稳定版本,因此您必须:

  • 修改您的 composer.json 文件并@dev在版本号末尾添加。例如:

    “教义/教义夹具捆绑”:“*@dev”,
  • 将您的最低稳定性设置从stable更改为dev

于 2012-12-31T05:43:00.290 回答
0

您的解决方案 Marcos García 也不起作用!我使用了 Symfony 2.1.6,所以我遇到了同样的问题。

解决方案是下载没有供应商的 Symfony 版本,然后更新 composer.json:

php composer.phar update 

or

php composer phar install 

现在一切都会很好,只是不要忘记安装 Curl 和 Git。

谢谢。

于 2013-01-02T10:49:22.103 回答