PHPackages                             agriya/webshopauthenticate - 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. agriya/webshopauthenticate

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

agriya/webshopauthenticate
==========================

719CSS

Since May 7Pushed 12y ago8 watchersCompare

[ Source](https://github.com/agriya/webshopauthenticate)[ Packagist](https://packagist.org/packages/agriya/webshopauthenticate)[ RSS](/packages/agriya-webshopauthenticate/feed)WikiDiscussions master Synced 4w ago

READMEChangelogDependenciesVersions (1)Used By (0)

Webshop - Authentication Package
--------------------------------

[](#webshop---authentication-package)

A Laravel 4 package for basic authentication

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

[](#installation)

Add the following to you composer.json file

```
"agriya/webshopauthenticate": "dev-master"

```

Run

```
composer update

```

Add the following to app/config/app.php

```
'Agriya\Webshopauthenticate\WebshopauthenticateServiceProvider',

```

Publish the config

```
php artisan config:publish agriya/webshopauthenticate

```

Publish the asset

```
php artisan asset:publish agriya/webshopauthenticate

```

Run the migration

```
php artisan migrate --package="agriya/webshopauthenticate"

```

Run the db seed

```
php artisan db:seed --class="Agriya\Webshopauthenticate\UsersGroupsTableSeeder"

```

Add the following to app/routes.php

```
Route::get(\Config::get('webshopauthenticate::uri').'/activation/{activationCode}', 'Agriya\Webshopauthenticate\AuthController@getActivate');
Route::group(array('before' => 'sentry.member'), function()
{
	Route::get(\Config::get('webshopauthenticate::uri').'/myaccount', 'Agriya\Webshopauthenticate\AccountController@getIndex');
	Route::post(\Config::get('webshopauthenticate::uri').'/myaccount', 'Agriya\Webshopauthenticate\AccountController@postIndex');
});
Route::get(\Config::get('webshopauthenticate::uri').'/{user_code_seo_title}', 'Agriya\Webshopauthenticate\ProfileController@viewProfile')->where('user_code_seo_title', 'U[0-9]{6}'); //Call when parameter has user code format value
Route::controller(\Config::get('webshopauthenticate::uri'), 'Agriya\Webshopauthenticate\AuthController');

Route::group(array('before' => 'sentry.admin'), function()
{
	Route::get(Config::get('webshopauthenticate::admin_uri'), 'Agriya\Webshopauthenticate\AdminUserController@index');
	Route::get(Config::get('webshopauthenticate::admin_uri').'/users/add', 'Agriya\Webshopauthenticate\AdminUserController@getAddUsers');
	Route::post(Config::get('webshopauthenticate::admin_uri').'/users/add', 'Agriya\Webshopauthenticate\AdminUserController@postAddUsers');
	Route::get(Config::get('webshopauthenticate::admin_uri').'/users/edit/{user_id}', 'Agriya\Webshopauthenticate\AdminUserController@getEditUsers');
	Route::post(Config::get('webshopauthenticate::admin_uri').'/users/edit/{user_id}', 'Agriya\Webshopauthenticate\AdminUserController@postEditUsers');
	Route::any(Config::get('webshopauthenticate::admin_uri').'/users/changestatus', 'Agriya\Webshopauthenticate\AdminUserController@getChangeUserStatus');
});

```

Add the following links in member &amp; admin layouts

```
Signup - URL::to(Config::get('webshopauthenticate::uri').'/signup')
Login - URL::to(Config::get('webshopauthenticate::uri').'/login')
Forgot password - URL::to(\Config::get('webshopauthenticate::uri').'/forgotpassword')

if (Sentry::check()) use below links
	Edit profile - URL::to(Config::get('webshopauthenticate::uri').'/myaccount')

if (Sentry::check() && hasAdminAccess) use below links
	Manage Member - URL::to(Config::get('webshopauthenticate::admin_uri'))

```

###  Health Score

22

—

LowBetter than 23% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity41

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.

### Community

Maintainers

![](https://www.gravatar.com/avatar/2284930604d5f857ed064491674b1f56e6c0eaed1b00d00b54f8f35a791a7974?d=identicon)[agriya](/maintainers/agriya)

---

Top Contributors

[![rsensan](https://avatars.githubusercontent.com/u/351331?v=4)](https://github.com/rsensan "rsensan (9 commits)")

### Embed Badge

![Health badge](/badges/agriya-webshopauthenticate/health.svg)

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

###  Alternatives

[namshi/jose

JSON Object Signing and Encryption library for PHP.

1.8k99.6M100](/packages/namshi-jose)[league/oauth1-client

OAuth 1.0 Client Library

99698.8M106](/packages/league-oauth1-client)[bezhansalleh/filament-shield

Filament support for `spatie/laravel-permission`.

2.8k2.9M88](/packages/bezhansalleh-filament-shield)[gesdinet/jwt-refresh-token-bundle

Implements a refresh token system over Json Web Tokens in Symfony

70516.4M35](/packages/gesdinet-jwt-refresh-token-bundle)[league/oauth2-google

Google OAuth 2.0 Client Provider for The PHP League OAuth2-Client

41721.2M117](/packages/league-oauth2-google)[illuminate/auth

The Illuminate Auth package.

9327.3M1.0k](/packages/illuminate-auth)

PHPackages © 2026

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