karabinse / laravel-user-invitation
User invitation for Laravel using built in PasswordBroker
Fund package maintenance!
Karabin
Requires
- php: ^8.2
- illuminate/contracts: ^10.0||^11.0
- illuminate/support: *
- spatie/laravel-package-tools: ^1.16
Requires (Dev)
- laravel/pint: ^1.14
- nunomaduro/collision: ^8.1.1||^7.10.0
- orchestra/testbench: ^9.0.0||^8.22.0
- pestphp/pest: ^2.34
- pestphp/pest-plugin-arch: ^2.7
- pestphp/pest-plugin-laravel: ^2.3
README
Installation
You can install the package via composer:
composer require karabinse/laravel-user-invitation
You can publish and run the migrations with:
php artisan vendor:publish --tag="laravel-user-invitation-migrations"
php artisan migrate
You can publish the config file with:
php artisan vendor:publish --tag="laravel-user-invitation-config"
This is the contents of the published config file:
return [ 'notification_class' => \Karabin\UserInvitation\Notifications\InvitationNotification::class, 'notification_subject' => 'Registered account', 'notification_text' => "You're receiving this message because someone has registered an account for you on ".config('app.name').'. Click the link below to complete the registration by choosing a password', 'notification_action_text' => 'Complete registration', 'route' => 'register-user.create', 'users_registration' => [ 'provider' => 'users', 'table' => env('AUTH_PASSWORD_RESET_TOKEN_TABLE', 'password_reset_tokens'), 'expire' => env('USER_INVITATION_EXPIRE', (60 * 24) * 7), 'throttle' => 60, ], ];
Usage
Add the trait
<?php namespace Karabin\UserInvitation\Tests\Fixtures; //... use Karabin\UserInvitation\Traits\Inviteable; class User extends AuthUser { use Inviteable, Notifiable; }
This gives access to two functions
<?php $user->createTokenForRegistration() // Returns a token string $user->sendInvitation() // Creates a token and sends a notification
Testing
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
License
The MIT License (MIT). Please see License File for more information.