thephpleague / factory-muffin

Enables the rapid creation of objects for testing
https://factory-muffin.thephpleague.com/
MIT License
531 stars 72 forks source link

factory-muffin ~3.0 and factory-muffin-faker ~1.0 fail composer install #398

Closed ddinchev closed 9 years ago

ddinchev commented 9 years ago

With the latest composer versions, trying to add "league/factory-muffin": "~3.0" to your require-dev section in composer.json would then fail composer update. Same goes for ~1.0 and the faker extension. The reason is the versions are not actually final.

Could you create final versions that include all patches released since the betas or hint in the article that those versions can be installed with version "dev-master@dev" instead of "~3.0"?

GrahamCampbell commented 9 years ago

Lower your global minimum stability.

GrahamCampbell commented 9 years ago

NEVER use dev-master.

GrahamCampbell commented 9 years ago

use ~3.0@dev if you really want.

ddinchev commented 9 years ago

Thanks for the suggestion. Could you update that in the README, so that others don't get confused on why the suggested composer.json section does not work? @GrahamCampbell