Sonata Easy-Extends捆绑包不会安装

时间:2014-07-29 17:44:39

标签: symfony sonata-admin sonata-user-bundle

我正在尝试设置Sonata用户捆绑包。根据{{​​3}},我也尝试安装Sonata Easy-Extends(根据instructions)。

不幸的是,我无法通过composer(在Win7上)安装Easy-Extends:

>composer require sonata-project/easy-extends-bundle
Please provide a version constraint for the sonata-project/easy-extends-bundle requirement: dev-master
./composer.json has been updated
Loading composer repositories with package information
Updating dependencies (including require-dev)
Your requirements could not be resolved to an installable set of packages.

  Problem 1
    - The requested package sonata-project/easy-extends-bundle could not be found in any version, there may be a typo in the package name.
  Problem 2
    - Installation request for symfony/framework-standard-edition 2.5.x-dev -> satisfiable by symfony/framework-standard-edition[2.5.x-dev].
    - symfony/framework-standard-edition 2.5.x-dev requires sonata-project/easy-extends-bundle 2.0 -> no matching package found.

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.

Installation failed, reverting ./composer.json to its original content.

我尝试了各种版本限制,包括说明中建议的2.0。

我错过了什么?

TIA 马特

1 个答案:

答案 0 :(得分:1)

根据奏鸣曲用户Google小组的讨论,我设法通过手动将以下内容添加到composer.json来安装捆绑包:

...    
"sonata-project/easy-extends-bundle": "dev-master",
...

可以找到GG中的相关主题here

相关问题