anyone had similar situation?
yesterday i have updated vendors via composer and it degraded from @dev to 2.0.0beta
"minimum-stability": "dev",
"require": {
"php": ">=5.4.0",
"yiisoft/yii2": "~2.0.0",
"yiisoft/yii2-swiftmailer": "~2.0.0",
"yiisoft/yii2-bootstrap": "~2.0.0",
"yiisoft/yii2-jui": "~2.0.0",
"yiisoft/yii2-imagine": "~2.0.0",
"fxp/composer-asset-plugin": "^1.0.0"
},
"require-dev": {
"phpunit/phpunit": "4.4.*",
"yiisoft/yii2-gii": "~2.0.0",
"yiisoft/yii2-debug": "~2.0.0"
}
it was
"yiisoft/yii2": "*"
i tried "~2.0.0" , "@dev" tried stable etc etc… deleted vendor folder, moved fxp from global. nothing was helping
but seconds ago - just boom - and composer sets @dev again!
can i see somehow what composer is going to install before actual installation?
my mistake, it’s in help
composer update --dry-run
regards