Do you have complex requirements for User management?
If you do and any of those works, you can fork and maintain, or even ask to be added to repo as maintainer. I believe they’ll be happy to see their works do not go 6 feet under.
If your requirement are simple, some Gii crud with some little effort should make a decent simple user management module
If you start off by dowloading a fresh yii2 install which seems to use Bootstrap 5 then usuario will not install because it depends of an older version of Bootstrap (3 ?).
As far as I can tell there may be a Bootstrap 5 compatible usuario but it isn’t listed yet on Packagist, the default Composer package repository.
Should work correctly for both new Basic and new Advanced installations. Remember to follow the installation guides. There are differences between the Basic and Advanced app requirements.
One issue that is very badly explained is " Remember that you have to configure the AuthManager component first." which appears almost as an afterthought in the install notes. YOU HAVE TO CONFIGURE AUTH MANAGER
Finally ( and obviously) you also require yii2-bootrap5, twbs/bootstrap-icons, and kartik-v/yii2-widget-select2. Then set the kartik bsversion parameter to 5.0
It may not be an expected answer, but I believe that Making your own User Management UI would sometimes be a nice choice.
Since your needs for user management differ from app to app, any ready-made user management extension tends to be too complicated/bloated, or falls too short for your specific app.
I usually write my own User Management UI module starting from Gii genarated CRUD for user table. Basically, what I have to write additionally is only a page for Assigning Roles to User. It’s relatively simpler and more straight-forward than using and customizing 3rd party extensions.
Yes, you are right, @evstevemd
I’m also a fan and a user of mdmsoft/yii2-admin, and I’ve been using it for the backends of my apps in fact.
But I think it’s too low-leveled for the ordirary users, while programmers like you and me would be satisfied for its flawless functionality. So I usually write my oun UI for user management, not for replacing mdmsoft/yii2-admin, but for adding a simplified UI along with it.