goalio / GoalioForgotPassword

A Zend Framework 2 (ZF2) Module offering forgot password via e-mail functionality to ZfcUser
BSD 3-Clause "New" or "Revised" License
42 stars 49 forks source link

Composer.phar update issue #7

Closed HurricaneHarry closed 11 years ago

HurricaneHarry commented 11 years ago

composer.json file: "zf-commons/zfc-base" : "dev-master", "zf-commons/zfc-user" : "dev-master", "goalio/goalio-forgotpassword" : "dev-master",

$ php composer.phar update Loading composer repositories with package information Updating dependencies Your requirements could not be resolved to an installable set of packages.

Problem 1

HurricaneHarry commented 11 years ago

I then chose to install the goalio mailservice first, then the forgotpassword service with composer.

This is what I get: $ php composer.phar update goalio/goalio-forgotpassword Loading composer repositories with package information Updating dependencies Your requirements could not be resolved to an installable set of packages.

Problem 1

pdobrigkeit commented 11 years ago

Thanks for the report. Will look into it!

pdobrigkeit commented 11 years ago

My guess is, that with the new Tags which have been released on ZF-Commons, using dev-master das not work anymore...

I would recommend, that you change your composer.json to look like this:

"zf-commons/zfc-base" : "0.*",
"zf-commons/zfc-user" : "0.*",
"goalio/goalio-forgotpassword" : "0.*"
HurricaneHarry commented 11 years ago

This works, thank you. I guess the tag system news would have reached me one way or another. :)