[ 'label' => 'Access Password Authentication Provider', 'description' => 'View and access the password authentication provider module', 'group' => 'Authentication Providers' ], ]; } public function boot(): void { $this->providerManager->register('authentication', 'password', Provider::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', ]; } }