PHPackages                             namvoyager/simple-user-management - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Authentication &amp; Authorization](/categories/authentication)
4. /
5. namvoyager/simple-user-management

ActiveLibrary[Authentication &amp; Authorization](/categories/authentication)

namvoyager/simple-user-management
=================================

User management.

v1.0.1(2y ago)06MITPHPPHP ^8.2

Since May 7Pushed 2y ago1 watchersCompare

[ Source](https://github.com/namvoyager/simple-user-management)[ Packagist](https://packagist.org/packages/namvoyager/simple-user-management)[ RSS](/packages/namvoyager-simple-user-management/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (1)Dependencies (8)Versions (3)Used By (0)

Simple User Management
======================

[](#simple-user-management)

[`PHP v8.2`](https://php.net)

[`Laravel v11.x`](https://github.com/laravel/laravel)

Installation
------------

[](#installation)

Install using composer:

```
composer require namvoyager/simple-user-management
```

Publish and install initial resources

```
php artisan user-management:install
```

Customize and override vendor logic
-----------------------------------

[](#customize-and-override-vendor-logic)

To customize the logic of the user management feature, you can open the `app/Http/Controllers/UserController` file. Here the controller will use `UserRepository` to handle logic.

```
namespace App\Http\Controllers;

use VoyagerInc\SimpleUserManagement\Contracts\UserRepository;

class UserController extends Controller
{
    public function __construct(
        protected UserRepository $users,
    ) {
    }
}
```

To be able to inherit or override `VoyagerInc\SimpleUserManagement\Repositories\UserRepository`, you can define a new `App\Repositories\UserRepository` class and implement `VoyagerInc\SimpleUserManagement\Contracts\UserRepository`. Then go to `app\Providers\SimpleUserManagementServiceProvider` to declare, now you can replace the `UserRepository` class of the vendor.

First, define a new `UserRepository` in path `app\Repositories`.

```
namespace App\Repositories;

use VoyagerInc\SimpleUserManagement\Contracts\UserRepository as UserRepositoryContract;

class UserRepository implements UserRepositoryContract
{
    // Override all the methods of the interface here.
}
```

Then, go to `app\Providers\SimpleUserManagementServiceProvider.php`.

```
use VoyagerInc\SimpleUserManagement\Contracts\UserRepository as UserRepositoryContract;
use App\Repositories\UserRepository;

public function register()
{
    $this->app->singleton(UserRepositoryContract::class, UserRepository::class);
}
```

Custom view
-----------

[](#custom-view)

User management view files are located in the path `resources/views/users/`. Corresponding to each screen there will be files: `index.blade.php`, `create.blade.php`, `show.blade.php`, `edit.blade.php`

###  Health Score

23

↓

LowBetter than 27% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity54

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~0 days

Total

2

Last Release

733d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/f6db8a8d363345acf104fcdbddf5fcb6cbad1bb67f61b647e119cd70369d3b5c?d=identicon)[namvoyager](/maintainers/namvoyager)

---

Top Contributors

[![namvoyager](https://avatars.githubusercontent.com/u/114548437?v=4)](https://github.com/namvoyager "namvoyager (1 commits)")

---

Tags

User management

###  Code Quality

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/namvoyager-simple-user-management/health.svg)

```
[![Health](https://phpackages.com/badges/namvoyager-simple-user-management/health.svg)](https://phpackages.com/packages/namvoyager-simple-user-management)
```

###  Alternatives

[laravel/cashier

Laravel Cashier provides an expressive, fluent interface to Stripe's subscription billing services.

2.5k25.9M106](/packages/laravel-cashier)[roots/acorn

Framework for Roots WordPress projects built with Laravel components.

9682.1M97](/packages/roots-acorn)[illuminate/queue

The Illuminate Queue package.

20331.4M1.2k](/packages/illuminate-queue)[illuminate/auth

The Illuminate Auth package.

9327.3M1.0k](/packages/illuminate-auth)[casbin/laravel-authz

An authorization library that supports access control models like ACL, RBAC, ABAC in Laravel.

324339.9k4](/packages/casbin-laravel-authz)[fumeapp/modeltyper

Generate TypeScript interfaces from Laravel Models

196277.9k](/packages/fumeapp-modeltyper)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
