Laravel Packages

Kit: An Opinionated API Starter Kit for Laravel

Published
Kit: An Opinionated API Starter Kit for Laravel image

Kit by Steve McDougall is a Laravel API starter kit built around token-based authentication, API documentation, and security-first defaults. It targets developers who want a structured starting point for building versioned JSON APIs without wiring everything up from scratch.

Getting Started

Clone the repository, install dependencies, and run the setup script:

composer install
composer run setup
php artisan serve

The composer run setup command copies .env.example to .env, generates an app key, and runs migrations against a local SQLite database.

API Architecture

Kit takes a few deliberate architectural positions:

  • No global /api prefix — routes are versioned directly, e.g. /v1/auth/login
  • Invokable controllers only — each controller is a single __invoke method
  • Form Requests for validation — request payloads are validated in dedicated FormRequest classes, with DTO-style payload classes in app/Http/Payloads/V1
  • JSON:API resource format — responses follow a consistent structure for entity data

Authentication

Nine routes handle the full auth lifecycle:

  • Registration and login (both return tokens via Laravel Sanctum)
  • /v1/auth/me (requires Bearer token)
  • Email verification via signed URLs
  • Password reset with anti-enumeration responses (the same response is returned whether or not the email exists)

Security Defaults

Kit includes several security defaults out of the box:

  • ULID primary keys for user records
  • Predefined rate limits on auth endpoints, configurable in AppServiceProvider
  • Mandatory Content-Type: application/json enforcement on write requests
  • Hardened response headers, including X-Content-Type-Options: nosniff, X-Frame-Options: DENY, and Referrer-Policy: no-referrer
  • Request ID tracking
  • Audit logging for sensitive operations
  • and more

Sunset Middleware

Kit also includes a Sunset middleware for deprecating API endpoints over time. You apply it directly to a route with three parameters: the sunset date, a successor URL, and a boolean to control enforcement:

Route::middleware('sunset:2027-01-01,https://api.acme.com/v2/auth/login,true')
->post('/v1/auth/login', LoginController::class);

While the endpoint is still active, the middleware appends Deprecation, Sunset, and Link (successor-version) headers to every response, so API clients can detect the deprecation and plan accordingly. Once the sunset date passes and enforcement is enabled, the endpoint returns 410 Gone.

Documentation

API documentation is generated using Scribe. Annotations are attribute-based rather than docblock-based, and the setup produces an OpenAPI spec alongside the docs.

Localization

Kit respects the Accept-Language request header and responds with a Content-Language header. Supported locales default to en and es, with translation files at lang/en/api.php and lang/es/api.php.

Tooling

The project uses Pest for tests, PHPStan for static analysis, Pint for code formatting, and Rector for automated refactoring. GitHub Actions workflows run CI tests on every push, apply daily dependency updates, and run security scanning with composer audit and Gitleaks.

Requirements

  • PHP 8.5+
  • Laravel 12
  • SQLite (for local development; configurable for other databases)

Visit juststeveking/kit on GitHub to browse the source code and learn more.

Yannick Lyn Fatt photo

Staff Writer at Laravel News and Full stack web developer.

Sponsored

serpapi logo
SerpApi

The Web Search API for Your LLM and AI Applications

Visit SerpApi

The latest

View all →
PhpStorm 2026.2 Released image

PhpStorm 2026.2 Released

Read article
Laravel Doctor: Diagnose Your App With One Artisan Command image

Laravel Doctor: Diagnose Your App With One Artisan Command

Read article
CPX: The Composer Package Executor for PHP image

CPX: The Composer Package Executor for PHP

Read article
Laravel AI SDK Adds Human-in-the-Loop Tool Approval image

Laravel AI SDK Adds Human-in-the-Loop Tool Approval

Read article
Pest 5 Released With Test Impact Analysis, Agent Verification, and Evals image

Pest 5 Released With Test Impact Analysis, Agent Verification, and Evals

Read article
Queue-SQL: Run Mass Deletes and Updates Across Parallel Queue Jobs image

Queue-SQL: Run Mass Deletes and Updates Across Parallel Queue Jobs

Read article