PHPackages                             cmayorgahilario/laravel-starter-kit-inertia-react - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Framework](/categories/framework)
4. /
5. cmayorgahilario/laravel-starter-kit-inertia-react

ActiveProject[Framework](/categories/framework)

cmayorgahilario/laravel-starter-kit-inertia-react
=================================================

The skeleton application for the Laravel framework.

v1.0.5(1mo ago)08[4 PRs](https://github.com/cmayorgahilario/laravel-starter-kit-inertia-react/pulls)MITTypeScriptPHP ^8.5CI failing

Since Apr 22Pushed 1w agoCompare

[ Source](https://github.com/cmayorgahilario/laravel-starter-kit-inertia-react)[ Packagist](https://packagist.org/packages/cmayorgahilario/laravel-starter-kit-inertia-react)[ RSS](/packages/cmayorgahilario-laravel-starter-kit-inertia-react/feed)WikiDiscussions main Synced 1w ago

READMEChangelog (6)Dependencies (55)Versions (15)Used By (0)

Starter Template
================

[](#starter-template)

An opinionated, production-grade starting point for web applications. It ships a complete authentication and account-management foundation so you can begin building product features on day one instead of wiring up the basics.

The codebase is intentionally **business-logic free**: the only bounded context is `Security`(authentication, account settings, admin). Everything else is yours to build.

Stack
-----

[](#stack)

- **Laravel 13** / **PHP 8.5**
- **Filament 5** admin panel (`/admin`)
- **Inertia.js v3** + **React 19** SPA (TypeScript)
- **Fortify** + **Sanctum** authentication: login, registration, password reset, email verification, **2FA (TOTP)** and **passkeys (WebAuthn)**
- **Wayfinder** for typed, end-to-end route calls
- **Tailwind CSS v4** with a shadcn-style component base
- **Pest 4** testing (Unit, Feature, Browser, Architecture)

Everything runs in **Docker via Laravel Sail**. Services: Postgres, Valkey, Meilisearch, RustFS (S3), Mailpit, Soketi.

Requirements
------------

[](#requirements)

- Docker
- The Sail binary: `./vendor/bin/sail` (a `sail` shell alias is recommended)

> **Rule of thumb:** never run `php`, `artisan`, `composer`, `node`, `pnpm` or `pest` directly. Always prefix with `./vendor/bin/sail`. Running outside Sail breaks the environment.

Getting started
---------------

[](#getting-started)

```
# 1. Create your environment file
cp .env.example .env

# 2. Bring the containers up
./vendor/bin/sail up -d

# 3. Install dependencies
./vendor/bin/sail composer install
./vendor/bin/sail pnpm install

# 4. Generate the app key and run migrations + seeders
./vendor/bin/sail artisan key:generate
./vendor/bin/sail artisan migrate --seed

# 5. Start the dev server
./vendor/bin/sail pnpm dev
```

The app is now available at the `APP_URL` set in your `.env`, and the admin panel at `/admin`.

The first admin user is created from the `AUTH_FOUNDER_*` values in your `.env`. Set them before seeding.

Essential commands
------------------

[](#essential-commands)

ActionCommandStart environment`./vendor/bin/sail up -d`Dev (Vite)`./vendor/bin/sail pnpm dev`Build frontend`./vendor/bin/sail pnpm build`Migrate`./vendor/bin/sail artisan migrate`Tests (Unit+Feature)`./vendor/bin/sail pest`A single test`./vendor/bin/sail pest --filter="test name"`Static analysis`./vendor/bin/sail phpstan analyse`PHP formatting`./vendor/bin/sail pint`Lint / format JS`./vendor/bin/sail pnpm lint`TS types`./vendor/bin/sail pnpm types:check`Project layout
--------------

[](#project-layout)

Code is organized by **bounded context** (e.g. `App\…\Security\…`), and the test suite mirrors `app/` under `tests/Unit` and `tests/Feature`. Add new features as their own context alongside `Security`.

```
app/            Application code, grouped by bounded context
resources/js/   Inertia + React frontend (pages, components)
routes/         web.php, api.php
database/       Migrations, factories, seeders
tests/          Pest tests (Unit, Feature, Browser, Arch)
docs/           Full documentation — start at docs/index.md

```

Quality gates
-------------

[](#quality-gates)

The template enforces a high quality bar out of the box, run on every push via Git hooks and in CI:

- PHPStan at `max` level and **100% type coverage**
- Pint (PHP) and ESLint + Prettier (JS/TS) formatting
- Conventional Commits (validated by commitlint)
- Pest test suites: Unit, Feature, Browser, Architecture

Documentation
-------------

[](#documentation)

All project documentation lives in [`docs/`](docs/index.md). Start at [`docs/index.md`](docs/index.md). AI agents should read [`AGENTS.md`](AGENTS.md) first.

License
-------

[](#license)

Open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).

###  Health Score

44

—

FairBetter than 90% of packages

Maintenance94

Actively maintained with recent releases

Popularity4

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity59

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 50% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~9 days

Total

6

Last Release

46d ago

PHP version history (2 changes)v1.0.0PHP ^8.3

v1.0.5PHP ^8.5

### Community

Maintainers

![](https://www.gravatar.com/avatar/b270ce37c9e50f3be130225b85b7b8df6c52f9bc0395555610f23c951299ef79?d=identicon)[makoto2805](/maintainers/makoto2805)

---

Top Contributors

[![carlos-mayorga](https://avatars.githubusercontent.com/u/4119035?v=4)](https://github.com/carlos-mayorga "carlos-mayorga (124 commits)")[![cmayorgahilario](https://avatars.githubusercontent.com/u/4119035?v=4)](https://github.com/cmayorgahilario "cmayorgahilario (124 commits)")

---

Tags

frameworklaravel

###  Code Quality

TestsPest

Static AnalysisPHPStan, Rector

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/cmayorgahilario-laravel-starter-kit-inertia-react/health.svg)

```
[![Health](https://phpackages.com/badges/cmayorgahilario-laravel-starter-kit-inertia-react/health.svg)](https://phpackages.com/packages/cmayorgahilario-laravel-starter-kit-inertia-react)
```

###  Alternatives

[unopim/unopim

UnoPim Laravel PIM

10.5k2.4k](/packages/unopim-unopim)[bagisto/bagisto

Bagisto Laravel E-Commerce

27.6k172.1k9](/packages/bagisto-bagisto)[nunomaduro/laravel-starter-kit-inertia-react

The skeleton application for the Laravel framework.

2071.1k](/packages/nunomaduro-laravel-starter-kit-inertia-react)[codewithdennis/larament

Larament is a time-saving starter kit to quickly launch Laravel 13.x projects. It includes FilamentPHP 5.x pre-installed and configured, along with additional tools and features to streamline your development workflow.

3991.8k](/packages/codewithdennis-larament)[ercogx/laravel-filament-starter-kit

This is a Filament v5 Starter Kit for Laravel 13, designed to accelerate the development of Filament-powered applications.

461.8k](/packages/ercogx-laravel-filament-starter-kit)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
