akkurateio / laravel-auth
This package is abandoned and no longer maintained.
No replacement package was suggested.
Auth logic for Akkurate Ecosystem
v0.1.3
2021-01-12 11:37 UTC
Requires
- akkurateio/laravel-back-components: ^0.1
- akkurateio/laravel-core: ^0.1
- laravel/passport: ^10.0
- laravel/ui: ^2.0|^3.0
- spatie/laravel-web-tinker: ^1.7
- thomaswelton/laravel-gravatar: ^1.2
Requires (Dev)
- doctrine/dbal: ^3.0
- orchestra/testbench: ^6.0
- phpunit/phpunit: ^9.0
README
Module for authenticate a user before accessing the application.
Installation
This package can be installed through Composer.
composer require akkurate/laravel-auth
Optionally, you can:
Publish the views with this command:
php artisan vendor:publish --provider="Akkurate\LaravelAuth\LaravelAuthServiceProvider" --tag="views"
Publish as well the config file with this command:
php artisan vendor:publish --provider="Akkurate\LaravelAuth\LaravelAuthServiceProvider" --tag="config"
Publish the sass with this command:
php artisan vendor:publish --provider="Akkurate\LaravelAuth\LaravelAuthServiceProvider" --tag="sass"
Utilisation
You can customize the email address verification by an insert of this method inside your User model.
public function sendEmailVerificationNotification()
{
$this->notify(new \Akkurate\LaravelAuth\Notifications\VerifyEmailNotification());
}