akkurateio / laravel-auth
Auth logic for Akkurate Ecosystem
Installs: 62
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
pkg:composer/akkurateio/laravel-auth
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());
}