+ // Password Configuration
+ // Changes here must be reflected in ApiDocsGenerate@getValidationAsString.
+ Password::defaults(function () {
+ return Password::min(8);
+ });
+
+ // Custom guards
+ Auth::extend('api-token', function ($app, $name, array $config) {
+ return new ApiTokenGuard($app['request'], $app->make(LoginService::class));
+ });
+
+ Auth::extend('ldap-session', function ($app, $name, array $config) {
+ $provider = Auth::createUserProvider($config['provider']);
+
+ return new LdapSessionGuard(
+ $name,
+ $provider,
+ $app['session.store'],
+ $app[LdapService::class],
+ $app[RegistrationService::class]
+ );
+ });
+
+ Auth::extend('async-external-session', function ($app, $name, array $config) {
+ $provider = Auth::createUserProvider($config['provider']);
+
+ return new AsyncExternalBaseSessionGuard(
+ $name,
+ $provider,
+ $app['session.store'],
+ $app[RegistrationService::class]
+ );
+ });