lornequinn / starter
Flux-free TALL stack starter kit. Laravel 13 + Livewire 4 + Tailwind 4 + lornequinn/auth.
Requires
- php: ^8.3
- laravel/framework: ^13.7
- laravel/tinker: ^3.0
- livewire/livewire: ^4.1
- lornequinn/auth: ^2.0
Requires (Dev)
- fakerphp/faker: ^1.24
- larastan/larastan: ^3.0
- laravel/pail: ^1.2.5
- laravel/pint: ^1.27
- laravel/sail: ^1.53
- mockery/mockery: ^1.6
- nunomaduro/collision: ^8.9.3
- pestphp/pest: ^4.0
- pestphp/pest-plugin-laravel: ^4.0
README
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