Skip to content

Password Policy

This page is generated from public package documentation in capell-4/packages and the package manifest checked into the source repository.

FieldValue
Composer packagecapell-app/password-policy
Package slugpassword-policy
Product groupCapell Operations
Tierpremium
Bundleoperations
Runtime contextsadmin, console
Capell version^4.0
Source repositorycapell-app/packages
Source pathpackages/password-policy
Docs sourcepackages/password-policy/docs
Manifestcapell.json

Password Policy is an Available, Schema-owning Capell package in the Capell Operations product group. It ships as capell-app/password-policy and extends these surfaces: admin, console.

Enforce admin password expiry, forced resets, reuse history, and breach (HIBP) checks across your Capell panels - configured from one settings screen, no code.

After install, admins get package-owned management or reporting surfaces inside Capell.

Status details:

  • Status: Available
  • Tier: premium
  • Bundle: operations
  • Composer package: capell-app/password-policy
  • Namespace: Capell\PasswordPolicy
  • Theme key: not applicable

For developers: The package gives developers package-owned service providers, Actions, Data objects, Filament classes, and Blade views instead of pushing this behaviour into core or application code.

For teams: Enforce admin password expiry, forced resets, reuse history, and breach (HIBP) checks across your Capell panels - configured from one settings screen, no code.

Screenshot contract: docs/screenshots.json.

  • Password Policy settings page (admin, required).
  • Forced password change form (admin, required).
  • User table password policy columns and filters (admin, required).
  • Service providers: Capell\PasswordPolicy\Providers\PasswordPolicyServiceProvider.
  • Config files: packages/password-policy/config/capell-password-policy.php.
  • Migrations: packages/password-policy/database/migrations/2026_05_10_190863_01_add_password_policy_columns_to_users_table.php, packages/password-policy/database/migrations/2026_05_10_190863_02_create_password_policy_password_histories_table.php.
  • Settings migrations: packages/password-policy/database/settings/2026_05_10_190864_01_create_password_policy_settings.php, packages/password-policy/database/settings/2026_06_04_000001_01_add_password_complexity_settings.php, packages/password-policy/database/settings/2026_06_16_000001_01_add_password_expiry_warning_settings.php.
  • Settings classes: PasswordPolicySettings.
  • Filament classes: PasswordPolicyPanelExtender, PasswordPolicyUserFormExtender, PasswordPolicyUserTableExtender, ForcedPasswordChangePage, PasswordPolicySettingsPage, PasswordPolicySettingsSchema.
  • Events: PasswordChanged, PasswordExpired, UserMarkedForPasswordChange.
  • Actions: BuildPasswordSecurityPostureReportAction, EvaluatePasswordPolicyAction, MarkUserForPasswordChangeAction, NotifyPasswordPolicyLifecycleEventAction, PrunePasswordHistoryAction, RecordPasswordHistoryAction, SendPasswordExpiryWarningNotificationsAction, UpdatePasswordAction, ValidatePasswordChangeAction.
  • Data objects: PasswordChangeData, PasswordPolicyStatusData, PasswordSecurityPostureReportData, ResolvedPasswordPolicySettingsData.
  • Command signatures: capell:password-policy:doctor, capell:password-policy:expire-stale, capell:password-policy:prune-history, capell:password-policy:require-change, capell:password-policy:send-expiry-warnings.
  • Console command classes: ExpireStalePasswordsCommand, PasswordPolicyDoctorCommand, PrunePasswordHistoryCommand, RequirePasswordChangeCommand, SendExpiryWarningsCommand.
  • Manifest contributions: admin-action-extender: Capell\PasswordPolicy\Manifest\PasswordPolicyAdminExtendersContribution, admin-page: Capell\PasswordPolicy\Manifest\PasswordPolicyAdminPagesContribution, console-command: Capell\PasswordPolicy\Manifest\PasswordPolicyConsoleCommandsContribution, health-check: Capell\PasswordPolicy\Manifest\PasswordPolicyHealthContribution, setting: Capell\PasswordPolicy\Manifest\PasswordPolicySettingsContribution.
  • Health checks: Capell\PasswordPolicy\Health\PasswordPolicyHealthCheck.
  • Blade views: packages/password-policy/resources/views/filament/pages/forced-password-change.blade.php.
  • Required tables: password_policy_password_histories.
  • Migration files: 2026_05_10_190863_01_add_password_policy_columns_to_users_table.php, 2026_05_10_190863_02_create_password_policy_password_histories_table.php.
  • Migration impact: run host migrations through the package install flow before opening package surfaces.
  • Deletion/retention behaviour: Docs gap unless the package has an explicit pruning command, retention setting, or tested cascade path.
  • Admin navigation: adds package-owned Filament classes when registered.
  • Permissions: none declared in capell.json.
  • Public routes: none detected in package route files.
  • Database changes: package migrations are declared.
  • Settings: Capell\PasswordPolicy\Settings\PasswordPolicySettings.
  • Queues or schedules: none detected in standard package paths.
  • Cache tags: none declared.
  • Commands: capell:password-policy:doctor, capell:password-policy:expire-stale, capell:password-policy:prune-history, capell:password-policy:require-change, capell:password-policy:send-expiry-warnings.
  • Run migrations before opening package resources or public routes.
  • Configure package settings before testing production-like workflows.
  • Run package commands from the host app; in this repository use vendor/bin/pest for package tests.
  • Keep composer.json, composer.local.json, capell.json, docs, screenshots, and tests aligned when the package surface changes.
SymptomLikely causeCheckFix
Package surface is missing after installProvider or manifest is not loadedConfirm capell.json, package composer.json, and provider registrationReinstall the package, refresh Composer autoload, and clear host caches
Admin screen or command fails on missing tablePackage migrations have not runCheck the tables listed in Data ModelRun host migrations and rerun the focused package test
Background work does not runQueue worker or scheduled command is not activeCheck package jobs, commands, and host scheduler configurationStart the queue or scheduler, then run the focused command or package test
  1. Install the package: composer require capell-app/password-policy.
  2. Run the required setup: php artisan migrate.
  3. Open the related Capell admin surface and verify Password Policy appears.