thiagothaison/uac-acesso-web

PHP User Access Control - Acesso Web

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

This package is not auto-updated.

Last update: 2024-04-20 13:19:54 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;