thiagothaison/uac-acesso-web

PHP User Access Control - Acesso Web

Installs: 15

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/thiagothaison/uac-acesso-web

v1.0.4 2018-02-21 17:32 UTC

This package is not auto-updated.

Last update: 2025-10-18 20:36:34 UTC


README

Packagist License

Installation

Require this package with composer. It is recommended to only require the package for development.

composer require thiagothaison/uac-acesso-web

Add the ServiceProvider to the providers array in config/app.php

AcessoWeb\Providers\AcessoWebProvider::class,

And replace the HashServiceProvider

Illuminate\Hashing\HashServiceProvider::class,

with

AcessoWeb\Libraries\HashServiceProvider::class,

Usage

You can now replace in your Auth/LoginController.php

use Illuminate\Foundation\Auth\AuthenticatesUsers;

with

use AcessoWeb\Traits\Auth\AuthenticatesUsers;