Starter kit alignment - 2026-05-20#42
Merged
Merged
Conversation
d7ca13a to
f8b26fd
Compare
techenby
commented
May 21, 2026
techenby
commented
May 21, 2026
techenby
commented
May 21, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Note
This PR was almost entirely done with Codex + the skill Pushpak created
This pull request introduces several improvements and new features, focusing primarily on enhancing authentication flows, adding support for passkey authentication, and improving code maintainability. The key changes include the implementation of passkey login responses, centralization of team-based redirect logic, improvements to validation rule typing, and the addition of new utility files for feature installation and path mapping.
Authentication and Redirect Enhancements:
Introduced a new
RedirectsToCurrentTeamtrait to centralize logic for redirecting users to their current team after authentication actions. This trait is now used across all relevant authentication response classes, replacing duplicated code and ensuring consistency in redirect behavior. [1] [2] [3] [4] [5] [6]Added support for passkey-based authentication:
PasskeyLoginResponseclass for handling passkey login responses.Usermodel to implement thePasskeyUsercontract and use thePasskeyAuthenticatabletrait.FortifyServiceProvider. [1] [2]Validation Improvements:
PasswordValidationRulesandProfileValidationRulestraits to useValidationRuleinstead of the more genericRule, improving type safety and clarity. [1] [2] [3]Developer Experience and Utilities:
Added the
InstallFeaturesCommandartisan command, allowing developers to interactively select which starter kit features to install, improving project setup flexibility.Introduced the
chisel-paths.phpconfiguration file to map feature names to their corresponding Blade view files, aiding in feature management and scaffolding.