[solved] Can`t install webvimark/module-user-management

When I try to install extension webvimark/module-user-management,




composer require --prefer-dist webvimark/module-user-management "*"



there is error:




Your requirements could not be resolved to an installable set of packages.


  Problem 1

    - The requested package webvimark/module-user-management could not be found in any version, there may be a typo in the package name.


Potential causes:

 - A typo in the package name

 - The package is not available in a stable-enough version according to your minimum-stability setting

   see <https://groups.google.com/d/topic/composer-dev/_g3ASeIFlrc/discussion> for more details.


Read <http://getcomposer.org/doc/articles/troubleshooting.md> for further common problems.




Someone install it with success (in basic template) ?

try add




 minimum-stability: dev

    prefer-stable : true

    require



to you’r composer.json

to be like this

"minimum-stability": "dev",

&quot;prefer-stable&quot; : true,


&quot;require&quot;: {


    &quot;php&quot;: &quot;&gt;=5.4.0&quot;,


    &quot;yiisoft/yii2&quot;: &quot;*&quot;,


    &quot;yiisoft/yii2-bootstrap&quot;: &quot;*&quot;,


    &quot;yiisoft/yii2-swiftmailer&quot;: &quot;*&quot;,


    &quot;webvimark/module-user-management&quot;: &quot;*&quot;


},

works !

very thanks :slight_smile:

The problem and solution, I was looking for.

Thanks!