[ 'label' => 'Access Password Authentication Provider', 'description' => 'View and access the password authentication provider module', 'group' => 'Authentication Providers' ], 'authentication_provider_password.admin.view' => [ 'label' => 'View Password Status', 'description' => 'View whether another user has a password credential configured', 'group' => 'Authentication Providers' ], 'authentication_provider_password.admin.manage' => [ 'label' => 'Manage User Passwords', 'description' => 'Set, reset, or remove password credentials for other users', 'group' => 'Authentication Providers' ], ]; } public function boot(): void { $this->providerManager->register('authentication', 'password', Provider::class); } public function registerCI(): array { return [ UserPasswordCommand::class, ]; } public function registerBI(): array { return [ 'handle' => $this->handle(), 'namespace' => 'AuthenticationProviderPassword', 'version' => $this->version(), 'label' => $this->label(), 'author' => $this->author(), 'description' => $this->description(), 'boot' => 'static/module.mjs', ]; } }