FIX ошибка установки пакетов композер
This commit is contained in:
parent
daa4a197c8
commit
d07e2ffbf4
@ -31,6 +31,7 @@ class FortifyServiceProvider extends ServiceProvider
|
||||
*/
|
||||
public function boot(): void
|
||||
{
|
||||
if (class_exists(Fortify::class)) {
|
||||
Fortify::createUsersUsing(CreateNewUser::class);
|
||||
Fortify::updateUserProfileInformationUsing(UpdateUserProfileInformation::class);
|
||||
Fortify::updateUserPasswordsUsing(UpdateUserPassword::class);
|
||||
@ -76,4 +77,5 @@ class FortifyServiceProvider extends ServiceProvider
|
||||
return view('auth.two-factor-challange');
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -145,7 +145,7 @@ return [
|
||||
|
|
||||
*/
|
||||
|
||||
'features' => [
|
||||
'features' => class_exists(Features::class) ? [
|
||||
Features::registration(),
|
||||
Features::resetPasswords(),
|
||||
// Features::emailVerification(),
|
||||
@ -156,6 +156,6 @@ return [
|
||||
'confirmPassword' => true,
|
||||
// 'window' => 0,
|
||||
]),
|
||||
],
|
||||
] : [],
|
||||
|
||||
];
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user