yiioverflow / yii2-imap

https://yiioverflow.com
BSD 3-Clause "New" or "Revised" License
41 stars 33 forks source link

Сreating tag 0.1.0 for marking stable version #29

Closed execut closed 4 years ago

execut commented 5 years ago

Hello! I try install with minimum-stability stable and get error:

./composer.phar require roopz/yii2-imap

  [InvalidArgumentException]                                                                                                                                                    
  Could not find a version of package roopz/yii2-imap matching your minimum-stability (stable). Require it with an explicit version constraint allowing its desired stability.  

For fix it, add, please, version tag 0.1.0 by run this commands:

git tag 0.1.0; git push --tags;
yiioverflow commented 4 years ago

Hi @execut Thank you for update. Actually I have only few knowledge about versioning. Can you explain how can i do it ? and to which branch i need to push ? Do i need to make changes in composer.json ?

execut commented 4 years ago

Hi @execut Thank you for update. Actually I have only few knowledge about versioning. Can you explain how can i do it ? and to which branch i need to push ?

master

Do i need to make changes in composer.json ?

no need to change composer.json

Simple do it:

git checkout master
git tag 0.1.0
git push --tags