Closed mikeSimonson closed 11 years ago
You need to write "elao/web-profiler-extra-bundle": "2.1.*@dev" inside your composer.json
Nice it worked perfectly. What does that @dev mean to composer ?
Without the @dev it will use a tagged version. You can remove it if you specify the minimum stability inside composer.json http://getcomposer.org/doc/04-schema.md#minimum-stability
I just checked and it looks it was because I tried
"elao/web-profiler-extra-bundle": "2.1"
And
"elao/web-profiler-extra-bundle": "2.1*"
But not
"elao/web-profiler-extra-bundle": "2.1.*"
I thought it might be a possible explanation because I already have
"minimum-stability": "dev",
in my composer.json
Now I am at loss understanding what composer is tracking. I taught he was looking for tags but you don't have any tags. How does composer got that he had to look for a branch 2.1 when you gave him 2.1.* and that he didn't got it when i tried 2.1 ?
should be fixed by #29
Hi,
It looks like there is a problem with the requirement in composer.json. "symfony/framework-bundle": "~2.2", You require the framework bundle to 2.2 version and it's thus not installable on symfony 2.1.* I get
I saw that you have a a 2.1 branch but didn't found a way to tell composer to go there instead of the main one. And if it's what should be done then the readme.md should be updated too.
Thanks