PHPackages                             tapp/tapp-filament-starter-kit - 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. tapp/tapp-filament-starter-kit

ActiveProject[Framework](/categories/framework)

tapp/tapp-filament-starter-kit
==============================

The skeleton application for the Laravel framework.

01↑2900%[1 PRs](https://github.com/TappNetwork/tapp-filament-starter-kit/pulls)BladeCI failing

Since May 12Pushed yesterdayCompare

[ Source](https://github.com/TappNetwork/tapp-filament-starter-kit)[ Packagist](https://packagist.org/packages/tapp/tapp-filament-starter-kit)[ RSS](/packages/tapp-tapp-filament-starter-kit/feed)WikiDiscussions main Synced yesterday

READMEChangelogDependenciesVersions (6)Used By (0)

- Blade (this project) version: **[github.com/nunomaduro/laravel-starter-kit](https://github.com/nunomaduro/laravel-starter-kit)**
- Inertia &amp; React version: **[github.com/nunomaduro/laravel-starter-kit-inertia-react](https://github.com/nunomaduro/laravel-starter-kit-inertia-react)**
- Inertia &amp; Vue version: **[github.com/nunomaduro/laravel-starter-kit-inertia-vue](https://github.com/nunomaduro/laravel-starter-kit-inertia-vue)**

 [ ![Overview Laravel Starter Kit](/art/banner.png) ](https://youtu.be/VhzP0XWGTC4)

 [![Build Status](https://github.com/nunomaduro/laravel-starter-kit/actions/workflows/tests.yml/badge.svg)](https://github.com/nunomaduro/laravel-starter-kit/actions) [![Total Downloads](https://camo.githubusercontent.com/d00f8b2ec6ffa27d4731aa761b7142a239e43eaccd53e25f170e4dbb5aa28c18/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6e756e6f6d616475726f2f6c61726176656c2d737461727465722d6b6974)](https://packagist.org/packages/nunomaduro/laravel-starter-kit) [![Latest Stable Version](https://camo.githubusercontent.com/2ba1293c53de04baa5c3e465854cf7fb5786ab54bd836527f59c89e40ad3a47b/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6e756e6f6d616475726f2f6c61726176656c2d737461727465722d6b6974)](https://packagist.org/packages/nunomaduro/laravel-starter-kit) [![License](https://camo.githubusercontent.com/284e8dccb15f3e5c60d64c781b750976c0895531da2b631894d4a2169051c1ab/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f6e756e6f6d616475726f2f6c61726176656c2d737461727465722d6b6974)](https://packagist.org/packages/nunomaduro/laravel-starter-kit) [![YouTube Channel Subscribers](https://camo.githubusercontent.com/a32a48cc6ec1283f38f5beedd4f3aec3eff914f663007ce9295ab1b60e5507e2/68747470733a2f2f696d672e736869656c64732e696f2f796f75747562652f6368616e6e656c2f73756273637269626572732f55434f5f68595a463267625f4379473573413741726c47673f7374796c653d666c6174266c6162656c3d796f757475626526636f6c6f723d627269676874677265656e)](https://youtube.com/@nunomaduro?sub_confirmation=1)

**Laravel Starter Kit** is an ultra-strict, type-safe [Laravel](https://laravel.com) skeleton engineered for developers who refuse to compromise on code quality. This opinionated starter kit enforces rigorous development standards through meticulous tooling configuration and architectural decisions that prioritize type safety, immutability, and fail-fast principles.

Why This Starter Kit?
---------------------

[](#why-this-starter-kit)

Modern PHP has evolved into a mature, type-safe language, yet many Laravel projects still operate with loose conventions and optional typing. This starter kit changes that paradigm by enforcing:

- **100% Type Coverage**: Every method, property, and parameter is explicitly typed
- **Zero Tolerance for Code Smells**: Rector and PHPStan at maximum strictness catch issues before they become bugs
- **Immutable-First Architecture**: Data structures favor immutability to prevent unexpected mutations
- **Fail-Fast Philosophy**: Errors are caught at compile-time, not runtime
- **Automated Code Quality**: Pre-configured tools ensure consistent, pristine code across your entire team
- **Bun-Powered**: Leveraging Bun for blazing-fast dependency management...
- **Just Better Laravel Defaults**: Thanks to **[Essentials](https://github.com/nunomaduro/essentials)** / strict models, auto eager loading, immutable dates, and more...

This isn't just another Laravel boilerplate—it's a statement that PHP applications can and should be built with the same rigor as strongly-typed languages like Rust or TypeScript.

Getting Started
---------------

[](#getting-started)

> **Requires [PHP 8.4+](https://php.net/releases/)**, [Bun](https://bun.sh) and a code coverage driver like [xdebug](https://xdebug.org/docs/install)\*\*.

Create your type-safe Laravel application using [Composer](https://getcomposer.org):

```
composer create-project nunomaduro/laravel-starter-kit --prefer-dist example-app
```

### Initial Setup

[](#initial-setup)

Navigate to your project and complete the setup:

```
cd example-app

# Setup project
composer setup

# Start the development server
composer dev
```

### Optional: Browser Testing Setup

[](#optional-browser-testing-setup)

If you plan to use Pest's browser testing capabilities:

```
bun add playwright
bunx playwright install
```

### Verify Installation

[](#verify-installation)

Run the test suite to ensure everything is configured correctly:

```
composer test
```

You should see 100% test coverage and all quality checks passing.

Available Tooling
-----------------

[](#available-tooling)

### Development

[](#development)

- `composer dev` - Starts Laravel server, queue worker, log monitoring, and Vite+ dev server concurrently

### Code Quality

[](#code-quality)

- `composer lint` - Runs Rector (refactoring), Pint (PHP formatting), and Oxfmt (JS/TS formatting)
- `composer test:lint` - Dry-run mode for CI/CD pipelines

### Testing

[](#testing)

- `composer test:type-coverage` - Ensures 100% type coverage with Pest
- `composer test:types` - Runs PHPStan at level 9 (maximum strictness)
- `composer test:unit` - Runs Pest tests with 100% code coverage requirement
- `composer test` - Runs the complete test suite (type coverage, unit tests, linting, static analysis)

### Maintenance

[](#maintenance)

- `composer update:requirements` - Updates all PHP and Bun dependencies to latest versions

License
-------

[](#license)

**Laravel Starter Kit** was created by **[Nuno Maduro](https://x.com/enunomaduro)** under the **[MIT license](https://opensource.org/licenses/MIT)**.

###  Health Score

23

—

LowBetter than 26% of packages

Maintenance65

Regular maintenance activity

Popularity2

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity17

Early-stage or recently created project

 Bus Factor1

Top contributor holds 100% 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.

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/837400?v=4)[tapp](/maintainers/tapp)[@tapp](https://github.com/tapp)

---

Top Contributors

[![swilla](https://avatars.githubusercontent.com/u/304159?v=4)](https://github.com/swilla "swilla (14 commits)")

### Embed Badge

![Health badge](/badges/tapp-tapp-filament-starter-kit/health.svg)

```
[![Health](https://phpackages.com/badges/tapp-tapp-filament-starter-kit/health.svg)](https://phpackages.com/packages/tapp-tapp-filament-starter-kit)
```

###  Alternatives

[laravel/socialite

Laravel wrapper around OAuth 1 &amp; OAuth 2 libraries.

5.7k104.3M822](/packages/laravel-socialite)[laravel/dusk

Laravel Dusk provides simple end-to-end testing and browser automation.

1.9k38.6M289](/packages/laravel-dusk)[pinguo/php-msf

Pinguo Micro Service Framework For PHP

1.7k4.2k](/packages/pinguo-php-msf)[nineinchnick/edatatables

Grid widget for the Yii Framework, wrapper for the DataTables jQuery plugin

173.2k](/packages/nineinchnick-edatatables)

PHPackages © 2026

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