lornequinn/starter
| Install | |
|---|---|
composer require lornequinn/starter |
|
| Latest Version: | v0.1.1 |
| PHP: | ^8.3 |
| License: | MIT |
| Last Updated: | May 13, 2026 |
| Links: | GitHub · Packagist |
Starter
Flux-free TALL stack starter kit. Laravel 13 + Livewire 4 + Tailwind 4 + lornequinn/auth.
Usage
laravel new --using=lornequinn/starter my-app
cd my-app
composer dev
That's it. Auth flows (login, registration, password reset, email verification, 2FA, profile) are pulled in from lornequinn/auth and wired up automatically. Visit /login, /register, or /dashboard.
What's in the box
- Laravel 13, Livewire 4, Alpine.js, Tailwind 4, Vite 8
lornequinn/auth(Fortify-backed Livewire auth, no Flux dependency)Usermodel wired withMustVerifyEmailandTwoFactorAuthenticatable- Pint, PHPStan (level 8 / Larastan), Pest 4
Model::unguard()in the base service providerdeclare(strict_types=1);enforced via Pint
Commands
composer dev # concurrent: serve + queue + pail + vite
composer test # pint check + phpstan + pest
composer lint # pint --parallel
composer stan # phpstan
Customising
The starter ships config/lq-auth.php pre-wired to use the host layouts (layouts.app for authenticated pages, layouts.guest for login/register/etc.). Toggle features (registration, 2FA, email verification) there.
To restyle auth views themselves (login form HTML, register form, profile pages), publish them once:
php artisan vendor:publish --tag=lq-auth-views
They land in resources/views/vendor/lq-auth/ and are yours to edit.
The host layout shell, UI components, and welcome page live on disk under resources/views/. Edit them, override them, replace them — they're yours from git init.
License
MIT