Install yii2-jeasyui for yii2

I am trying to use JEASYUI for yii2 by installing yii2-jeasyui , but I am having some problems. I cannot use composer successfully:

 php composer.phar require sheillendra/yii2-jeasyui "dev-master" 

due to shiellendra/yii2-theme package not found. so I installed it manually. Although the problem remains, because the theme folder is missing.

Can someone help me install correctly, even manually?

+5
source share
2 answers

If anyone has the same problem, this may help. The problem is with the composer file options. Just need to change:

 "minimum-stability": "stable", 

to:

 "minimum-stability": "dev", 

because yii2-jeasyui is not stable yet.

+6
source

Working solution for composer.json:

 "sheillendra/yii2-jeasyui": "@dev" 

and if you install through the console:

 php composer.phar require sheillendra/yii2-jeasyui "@dev" 
+1
source

All Articles