Domanda

Sto cercando di configurare il pacchetto utente Sonata.Come da Istruzioni Sto anche cercando di installare sonataEasy estende (secondo Queste istruzioni ).

Sfortunatamente, non riesco a diventare facili estensioni installate tramite compositore (su 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.
.

Ho provato vari vincoli di versione, incluso 2.0 come suggerito nelle istruzioni.

Cosa mi manca?

tia Matt

È stato utile?

Soluzione

Sulla base di una discussione nel gruppo Google Users Sonata-Users, sono riuscito a installare il pacchetto aggiungendo manualmente il seguente al mio composer.json:

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

Discussione correlata in GG può essere trovato qui .

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top