PHPackages                             fshangala/auth2-ation - 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. fshangala/auth2-ation

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

fshangala/auth2-ation
=====================

Authentication and authorization system for laravel and lumen

v1.0.1(4y ago)0141AGPL-3.0-or-laterPHP

Since Jan 19Pushed 4y ago1 watchersCompare

[ Source](https://github.com/fshangala/auth2-ation)[ Packagist](https://packagist.org/packages/fshangala/auth2-ation)[ RSS](/packages/fshangala-auth2-ation/feed)WikiDiscussions master Synced today

READMEChangelog (2)DependenciesVersions (3)Used By (1)

- add lumen's withFacades
- add lumen's withEloquent
- register the following service providers

```
$app->register(Fshangala\Auth2Ation\Auth2AtionServiceProvider::class);
$app->register(Fshangala\Auth2Ation\Auth\FAuthServiceProvider::class);

```

- register the authenticate middlewares

```
$app->middleware([
    Fshangala\Auth2Ation\Http\Middleware\Errors::class,
]);
$app->routeMiddleware([
    'auth' => Fshangala\Auth2Ation\Http\Middleware\Authenticate::class,
]);

```

- run migrations
- add the following line to use the Gate for permissions

```
use Illuminate\Support\Facades\Gate;

```

- Check for permission like this

```
Gate::authorize('permission',[['action'=>'create','resource'=>'permissions']]);

```

or

```
Gate::authorize('permission',[['action'=>'read','resource'=>'users','target'=>$res->id]]);

```

or

```
Gate::authorize('permission',[['action'=>'read','resource'=>'users','type'=>'student']]);

```

If not granted the request aborts with a 403 Forbiden response

- Primitive actions

1. create
2. read
3. update
4. delete

- Known resources

1. permissions
2. users

### Helpful status codes

[](#helpful-status-codes)

```
$statusTexts = [
    100 => 'Continue',
    101 => 'Switching Protocols',
    102 => 'Processing',            // RFC2518
    103 => 'Early Hints',
    200 => 'OK',
    201 => 'Created',
    202 => 'Accepted',
    203 => 'Non-Authoritative Information',
    204 => 'No Content',
    205 => 'Reset Content',
    206 => 'Partial Content',
    207 => 'Multi-Status',          // RFC4918
    208 => 'Already Reported',      // RFC5842
    226 => 'IM Used',               // RFC3229
    300 => 'Multiple Choices',
    301 => 'Moved Permanently',
    302 => 'Found',
    303 => 'See Other',
    304 => 'Not Modified',
    305 => 'Use Proxy',
    307 => 'Temporary Redirect',
    308 => 'Permanent Redirect',    // RFC7238
    400 => 'Bad Request',
    401 => 'Unauthorized',
    402 => 'Payment Required',
    403 => 'Forbidden',
    404 => 'Not Found',
    405 => 'Method Not Allowed',
    406 => 'Not Acceptable',
    407 => 'Proxy Authentication Required',
    408 => 'Request Timeout',
    409 => 'Conflict',
    410 => 'Gone',
    411 => 'Length Required',
    412 => 'Precondition Failed',
    413 => 'Content Too Large',                                           // RFC-ietf-httpbis-semantics
    414 => 'URI Too Long',
    415 => 'Unsupported Media Type',
    416 => 'Range Not Satisfiable',
    417 => 'Expectation Failed',
    418 => 'I\'m a teapot',                                               // RFC2324
    421 => 'Misdirected Request',                                         // RFC7540
    422 => 'Unprocessable Content',                                       // RFC-ietf-httpbis-semantics
    423 => 'Locked',                                                      // RFC4918
    424 => 'Failed Dependency',                                           // RFC4918
    425 => 'Too Early',                                                   // RFC-ietf-httpbis-replay-04
    426 => 'Upgrade Required',                                            // RFC2817
    428 => 'Precondition Required',                                       // RFC6585
    429 => 'Too Many Requests',                                           // RFC6585
    431 => 'Request Header Fields Too Large',                             // RFC6585
    451 => 'Unavailable For Legal Reasons',                               // RFC7725
    500 => 'Internal Server Error',
    501 => 'Not Implemented',
    502 => 'Bad Gateway',
    503 => 'Service Unavailable',
    504 => 'Gateway Timeout',
    505 => 'HTTP Version Not Supported',
    506 => 'Variant Also Negotiates',                                     // RFC2295
    507 => 'Insufficient Storage',                                        // RFC4918
    508 => 'Loop Detected',                                               // RFC5842
    510 => 'Not Extended',                                                // RFC2774
    511 => 'Network Authentication Required',                             // RFC6585
];

```

###  Health Score

23

—

LowBetter than 26% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity51

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

Total

2

Last Release

1614d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/53972016?v=4)[Funduluka Shangala](/maintainers/fshangala)[@fshangala](https://github.com/fshangala)

---

Top Contributors

[![fshangala](https://avatars.githubusercontent.com/u/53972016?v=4)](https://github.com/fshangala "fshangala (21 commits)")

### Embed Badge

![Health badge](/badges/fshangala-auth2-ation/health.svg)

```
[![Health](https://phpackages.com/badges/fshangala-auth2-ation/health.svg)](https://phpackages.com/packages/fshangala-auth2-ation)
```

###  Alternatives

[kartik-v/yii2-password

Useful password strength validation utilities for Yii Framework 2.0

761.3M17](/packages/kartik-v-yii2-password)[vitalybaev/laravel5-dkim

Laravel 5/6 package for signing outgoing messages with DKIM.

3163.1k](/packages/vitalybaev-laravel5-dkim)

PHPackages © 2026

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