PHPackages                             folivaresrios/overseer - 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. folivaresrios/overseer

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

folivaresrios/overseer
======================

Laravel package designed to manage profiles and permissions based on Routing Laravel Features

1.2(8y ago)216MITPHPPHP &gt;=5.6.4

Since Dec 21Pushed 4y ago1 watchersCompare

[ Source](https://github.com/folivaresrios/overseer)[ Packagist](https://packagist.org/packages/folivaresrios/overseer)[ RSS](/packages/folivaresrios-overseer/feed)WikiDiscussions master Synced 2mo ago

READMEChangelog (3)Dependencies (7)Versions (4)Used By (0)

kissDev Overseer Package \[Deprecated\]
=======================================

[](#kissdev-overseer-package-deprecated)

[![Laravel 5.3](https://camo.githubusercontent.com/5dde4bb9334479231eddb90f84519a3e3b3ebb885b9cfe947eb2f7f82bb93269/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4c61726176656c2d352e332d7265642e7376673f7374796c653d666c61742d737175617265)](http://laravel.com)[![License](https://camo.githubusercontent.com/30597ff9a350144f03bffdd9183e16468e0b3ca1193e1d08591d992622738d55/687474703a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](https://tldrlegal.com/license/mit-license)

Structure Based: [caffeinated/shinobi](https://github.com/caffeinated/shinobi)

Overseer provides a simple profile-based permissions system to Laravel's built in Auth system. Overseer provides support for the following ACL structure:

- Every user can have zero or more profiles.
- Every profile can have zero or more permissions.

Permissions are then inherited to the user through the user's assigned profiles.

The package follows the FIG standards [PSR-1](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-1-basic-coding-standard.md), [PSR-2](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-2-coding-style-guide.md), and [PSR-4](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-4-autoloader.md). This package is not unit tested, but is planned to be covered.

Documentation
-------------

[](#documentation)

Wiki: [KissDev Overseer Wiki](https://github.com/folivaresrios/overseer/wiki)

Requirements
------------

[](#requirements)

The master branch has the following requirements:

- Laravel 5.\* or greater.
- PHP 5.6.4 or greater.

How to Install?
---------------

[](#how-to-install)

*\[Using [Composer](http://getcomposer.org/)\]*

Add the plugin to your project's `composer.json` - something like this:

```
{
  "require": {
    "folivaresrios/overseer": "^1.0"
  }
}
```

or through command line

```
composer require folivaresrios/overseer

```

### Service Provider and Facade

[](#service-provider-and-facade)

Once this operation is complete, simply add the service provider and alias to your project's `config/app.php` file and run the provided migrations against your database.

```
'providers' => [
    //...
    KissDev\Overseer\OverseerServiceProvider::class,
    //...
];
```

```
'aliases' => [
    // ...
    'Overseer' => KissDev\Overseer\Facades\Overseer::class,
    // ...
],
```

### Migrations

[](#migrations)

You'll need to run the provided migrations against your database. Publish the migration files using the `vendor:publish` Artisan command and run `migrate`:

```
php artisan vendor:publish
php artisan migrate

```

### Route Middleware

[](#route-middleware)

Add the following middleware to the $routeMiddleware array in app/Http/Kernel.php BEFORE the EncryptCookies middleware:

```
protected $routeMiddleware = [
    //...
    'profile.overseer' => \KissDev\Overseer\Middleware\UserHasProfile::class,
    'permissions.overseer' => \KissDev\Overseer\Middleware\UserHasPermission::class,
    //...
];
```

Reporting Issues
----------------

[](#reporting-issues)

If you have a problem with Overseer please open an issue on [GitHub](https://github.com/folivaresrios/overseer/issues).

Contributing
------------

[](#contributing)

If you'd like to contribute to Overseer creating something you'd like added, send a [pull requests](https://help.github.com/articles/using-pull-requests) or open [issues](https://github.com/folivaresrios/overseer/issues).

###  Health Score

27

—

LowBetter than 49% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity9

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity60

Established project with proven stability

 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 ~212 days

Total

3

Last Release

3003d ago

### Community

Maintainers

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

---

Top Contributors

[![folivaresrios](https://avatars.githubusercontent.com/u/5620412?v=4)](https://github.com/folivaresrios "folivaresrios (12 commits)")

---

Tags

laravelauthaclpermissionsprofilesoverseerkissdev

###  Code Quality

TestsPHPUnit

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/folivaresrios-overseer/health.svg)

```
[![Health](https://phpackages.com/badges/folivaresrios-overseer/health.svg)](https://phpackages.com/packages/folivaresrios-overseer)
```

###  Alternatives

[yajra/laravel-acl

Laravel ACL is a simple role, permission ACL for Laravel Framework.

112103.9k1](/packages/yajra-laravel-acl)[phpzen/laravel-rbac

Role based access control for Laravel 5

383.2k](/packages/phpzen-laravel-rbac)

PHPackages © 2026

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