no matching package found updating using composer

Hi all,

I’m trying to update my yii2 advanced installation using composer, but I got this errors:


Problem 1

    - yiisoft/yii2 2.0.x-dev requires bower-asset/jquery.inputmask ~3.2.2 -> no matching package found.

    - yiisoft/yii2 dev-master requires bower-asset/jquery.inputmask ~3.2.2 -> no matching package found.

    - yiisoft/yii2 2.0.9 requires bower-asset/jquery 2.2.*@stable | 2.1.*@stable | 1.11.*@stable | 1.12.*@stable -> no matching package found.

    - Installation request for yiisoft/yii2 >=2.0.9 -> satisfiable by yiisoft/yii2[2.0.9, dev-master, 2.0.x-dev].



Here my composer.json file:


"minimum-stability": "dev",

	"require": {

		"php": ">=5.4.0",   

                "bower-asset/jquery": "@stable",

                "bower-asset/bootstrap": "@stable",

                "bower-asset/jquery-ui": "@stable",

                "bower-asset/jquery.inputmask": "@stable",

                "bower-asset/punycode": "@stable",

		"yiisoft/yii2": ">=2.0.9",                

		"yiisoft/yii2-bootstrap": "*",

		"yiisoft/yii2-swiftmailer": "*",

                "facebook/php-sdk-v4": "4.0.*",

                "venomous0x/whats-api": "*",

                "2amigos/yii2-qrcode-helper" : "*",

                "garyjl/yii2-simple_html_dom": "*",

                "linslin/yii2-curl": "*",

                "2amigos/yii2-google-maps-library" : "*",

                "filsh/yii2-oauth2-server": "2.0.0"

	},

Could you help me to understand what’s wrong please?

Thank you!!

Hello all,

hope that this can help someone…

I solved the problem, changing the line regarding "yiisoft/yii2" to


"yiisoft/yii2": ">=2.0.6@stable",

Adding the stable to yii2, all works fine and it updates my project correctly.

Thank you!