PHPackages                             plexcellmedia/quickauth - 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. plexcellmedia/quickauth

ActiveLibrary

plexcellmedia/quickauth
=======================

QuickAuth is user authentication extension for Catalyst Sentinel package.

v1.0(8y ago)014PHPPHP &gt;=5.4.0

Since Feb 11Pushed 8y ago1 watchersCompare

[ Source](https://github.com/plexcellmedia/quickauth)[ Packagist](https://packagist.org/packages/plexcellmedia/quickauth)[ RSS](/packages/plexcellmedia-quickauth/feed)WikiDiscussions master Synced 2d ago

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

Laravel 5 QuickAuth - Sentinel
==============================

[](#laravel-5-quickauth---sentinel)

---

QuickAuth is extension for Sentinel package that can be found [here](https://cartalyst.com/manual/sentinel/2.0).
With QuickAuth you can setup user authentication in few minutes!

Features
--------

[](#features)

- Login / Register / Password Recovery / Logout
- Necessary emails
- Translations support
- Easily customizable config and layout (or use your own)
- Username support if needed (default is email)

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

[](#requirements)

Before installation, make sure these packages are correctly set up.

- [Catalyst Sentinel](https://cartalyst.com/manual/sentinel/2.0#installation)
- [Laravel Collective Forms &amp; HTML](https://laravelcollective.com/docs/master/html#installation)

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

[](#installation)

```
$ composer require "plexcellmedia/quickauth"

```

After installing the package, open your Laravel config file located at ***config/app.php*** and add the following lines.

In the **$providers** array add the following service provider for this package.

```
Plexcellmedia\QuickAuth\QuickAuthServiceProvider::class,

```

In the **$aliases** array add the following facades for this package.

```
'Input' => Illuminate\Support\Facades\Input::class,
'QuickAuth' => Plexcellmedia\QuickAuth\Facades\QuickAuth::class,

```

Publish assets.

```
php artisan vendor:publish --provider="Plexcellmedia\QuickAuth\QuickAuthServiceProvider"

```

Add following line to **$routeMiddleware** array in Kernel.php

```
'sentinel.auth' => \App\Http\Middleware\SentinelAuth::class,

```

Setup routes

```
/** QuickAuth Routes */

// Login routes
Route::get('/login', 'QuickAuth\LoginController@showLogin')->name('quickauth.login.show');
Route::post('/login', 'QuickAuth\LoginController@doLogin')->name('quickauth.login.do');

// Register routes
Route::get('/register', 'QuickAuth\RegisterController@showRegister')->name('quickauth.register.show');
Route::post('/register', 'QuickAuth\RegisterController@doRegister')->name('quickauth.register.do');

// Activate user route
Route::get('/activate/{userId}/{code}', 'QuickAuth\ActivateController@doActivate')->name('quickauth.activate.do');

// Password recovery routes
Route::get('/forgot', 'QuickAuth\ForgotController@showForgot')->name('quickauth.forgot.show');
Route::post('/forgot', 'QuickAuth\ForgotController@doForgot')->name('quickauth.forgot.do');
Route::get('/verify/{email}/{code}', 'QuickAuth\ForgotController@verifyForgot')->name('quickauth.forgot.verify');

// Auth protected routes
Route::group(['middleware' => ['sentinel.auth']], function () {

    Route::get('/logout', 'QuickAuth\LogoutController@doLogout')->name('quickauth.logout.do');

});
```

Enter login success redirect route in QuickAuth config.

```
'login_success_route' => '',

```

**DONE**

Username support
----------------

[](#username-support)

Run SQL query to add username field at database.

```
ALTER TABLE `users` ADD `username` VARCHAR(64) AFTER `email`, ADD UNIQUE (`username`);
```

Enable username support in config.

```
'username_support' => true,

```

Customization
-------------

[](#customization)

Layouts and template can be found at `resources\views\vendor\quickauth`.

Translations can be found at `resources\lang\vendor\quickauth`.

Todo
----

[](#todo)

- Tests
- Login with username (currently usernames are supported but can't be logged in with)
- Support Laravel Auth

License
-------

[](#license)

GPL-3.0

###  Health Score

25

—

LowBetter than 37% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity58

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

Unknown

Total

1

Last Release

3014d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/2fac6ef7675736b0cd54dcbc53c5b28bbbe0a811554b761d959270c467f7e03c?d=identicon)[Plexcellmedia](/maintainers/Plexcellmedia)

---

Top Contributors

[![plexcellmedia](https://avatars.githubusercontent.com/u/12846005?v=4)](https://github.com/plexcellmedia "plexcellmedia (2 commits)")

### Embed Badge

![Health badge](/badges/plexcellmedia-quickauth/health.svg)

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

PHPackages © 2026

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