konekt / user
User handling module for Laravel applications
Installs: 127 708
Dependents: 5
Suggesters: 0
Security: 0
Stars: 2
Watchers: 5
Forks: 5
Open Issues: 0
Requires
- php: ^8.1
- ext-gd: *
- doctrine/dbal: ^3.5.1|^4.0
- konekt/address: ^3.0
- konekt/concord: ^1.13
- konekt/enum: ^4.1
- konekt/laravel-migration-compatibility: ^1.4
- laravel/framework: ^10.0|^11.0
Requires (Dev)
- mockery/mockery: ^1.6.2
- orchestra/testbench: ^8.0|^9.0
- phpunit/phpunit: ^10.0
README
Konekt User is a Concord module that extends Laravel's built-in user/auth functionality with profiles, addresses, organizations.
Internally relies on the Konekt Address module.
Important Note On Laravel Auth Support
If the "final" user class is NOT going to be App\Models\User
or (App\User
) then don't forget to modify model class
this to your app's config/auth.php
file:
//... 'providers' => [ 'users' => [ 'driver' => 'eloquent', // 'model' => App\Models\User::class <- change this to: 'model' => Konekt\User\Models\User::class, ], //...