v3.0: Livewire 4 migration and optional passkeys#205
Closed
produktive wants to merge 23 commits into
Closed
Conversation
Drop Volt and Folio in favor of Livewire 4 single-file page components, require Livewire 4 and Laravel 12+, and add configurable passkey sign-in with a dedicated /auth/setup/passkeys screen. Co-authored-by: Cursor <[email protected]>
Co-authored-by: Cursor <[email protected]>
Co-authored-by: Cursor <[email protected]>
Fix setup preview stacking, add an upgrade guide, and clean up static analysis and code style so the Livewire 4 and passkeys branch is ready for review. Co-authored-by: Cursor <[email protected]>
Register the Tests namespace for DuskTestCase, add CreatesApplication for the CI Laravel app harness, and expand the upgrade guide with $event.target migration notes. Co-authored-by: Cursor <[email protected]>
Walk up from the package tests directory to find the consuming app's bootstrap/app.php in CI instead of assuming it lives beside the tests folder. Co-authored-by: Cursor <[email protected]>
produktive
marked this pull request as draft
July 18, 2026 17:03
produktive
marked this pull request as ready for review
July 18, 2026 18:24
Livewire 4 passkeys
Fix login passkey blade and layout
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.
Summary
Livewire::addLocation().livewire/voltandlaravel/folioas package dependencies.laravel/passkeys, including/auth/setup/passkeysand anenable_passkeyssetting.UPGRADE.mdwith a v2.x → v3.0 migration guide, including Livewire 4 event handler syntax.Tests\DuskTestCaseand addsCreatesApplicationfor the Laravel app test harness.Breaking changes
^4.0)php artisan vendor:publish --tag=auth:assets --force)$el.checked/$el.valuewith$event.target.checked/$event.target.valueinwire:changeandwire:blurhandlersLivewire 4 notes for consuming apps
Package setup pages already use the correct syntax. If you override auth setup pages, update event handlers:
wire:change="update('key', $event.target.checked)" wire:blur="update('key', $event.target.value)"Alpine
$elreferences insidex-datablocks are unchanged.Test plan
vendor/bin/pint --testvendor/bin/phpstan analysecomposer require devdojo/auth:@dev, publish assets/config/migrations, migrate/auth/setuploads, toggles show active state, preview modal opens in front of settings/auth/setup/passkeysand sign-in button appears on login when enabledLivewire::addLocation()in consuming apps