質問

Sonataユーザーバンドルを設定しようとしています。命令 SonataをインストールしようとしていますEasy-extends(これらの命令)。

残念ながら、私はComposerを介して簡単に伸びることができません(Win7):

>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. マット

役に立ちましたか?

解決

Sonata-Users Googleグループの議論に基づいて、私は私のcomposer.jsonに手動で追加することでバンドルをインストールすることができました:

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

GGの関連スレッドを見つけることができます。。

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top