liip / LiipFunctionalTestBundle

Some helper classes for writing functional tests in Symfony
http://liip.ch
MIT License
639 stars 181 forks source link

[2.x] Cannot install 2.x branch anymore #533

Closed PapyDanone closed 5 years ago

PapyDanone commented 5 years ago

Could be related to #528

when requiring

"liip/functional-test-bundle": "2.x-dev"

or

"liip/functional-test-bundle": "~2.0@dev"

the installed version ends up being the latest from master:

$ composer show | grep liip

liip/functional-test-bundle         dev-master ac2c320

Symfony version: 4.3.2

Am I missing anything? Thanks for the help.

jayesbe commented 5 years ago

Same issue. Try

"liip/functional-test-bundle": "2.x-dev#464c7a2"
alexislefebvre commented 5 years ago

Please try this: composer require --dev "liip/functional-test-bundle:~2.0@alpha"

If it doesn't work, please run composer why-not "liip/functional-test-bundle:~2.0@alpha" and share the output.

alexislefebvre commented 5 years ago

Did you found a solution? Did you try the stable 3.0 release?

PapyDanone commented 5 years ago

@alexislefebvre we did end up upgrading to the 3.0 release.

I also tested composer require --dev "liip/functional-test-bundle:~2.0@alpha" and it now resolves to the expected commit hash.

Thanks for the help.