lornequinn/starter

Flux-free TALL stack starter kit. Laravel 13 + Livewire 4 + Tailwind 4 + lornequinn/auth.

Maintainers

Package info

github.com/lornequinn/starter

Type:project

pkg:composer/lornequinn/starter

Statistics

Installs: 0

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

v0.1.0 2026-05-11 01:42 UTC

This package is auto-updated.

Last update: 2026-05-11 01:47:26 UTC


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)
  • User model wired with MustVerifyEmail and TwoFactorAuthenticatable
  • Pint, PHPStan (level 8 / Larastan), Pest 4
  • Model::unguard() in the base service provider
  • declare(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