I work on YII project (advanced) and want to use JUI Extension for Yii 2 but getting this kind of error
Yii soft/yii2-jui 2.0.0 requires bower-asset/j query- Ui 1.11.*@stable -> no matching package found.
"yiisoft/yii2-jui": "~2.0.0"
Try this solution:
If you want to install the JUI extension for Yii2, you should do the following steps:
Run the following composer command:
php composer.phar require "fxp/composer-asset-plugin:~1.0"
Runphp composer.phar update
php composer.phar update
Run
php composer.phar require --prefer-dist yiisoft/yii2-jui
"yiisoft/yii2-jui": "~2.0.0"
to the require section of your composer.json file. – GAMITG