PHPackages                             lightszentip/laravel-starter-base-app - 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. [Templating &amp; Views](/categories/templating)
4. /
5. lightszentip/laravel-starter-base-app

ActiveProject[Templating &amp; Views](/categories/templating)

lightszentip/laravel-starter-base-app
=====================================

A powerful starter kit for Laravel applications featuring Filament and Jetstream, designed for rapid development with the latest quality standards. Perfect for building scalable and maintainable Laravel apps with a modern tech stack including Livewire, PHPStan, and Pest.

1.2(10mo ago)9111[14 PRs](https://github.com/lightszentip/laravel-starter-base-app/pulls)MITPHPPHP ^8.2||^8.3CI failing

Since Sep 3Pushed 1mo ago2 watchersCompare

[ Source](https://github.com/lightszentip/laravel-starter-base-app)[ Packagist](https://packagist.org/packages/lightszentip/laravel-starter-base-app)[ RSS](/packages/lightszentip-laravel-starter-base-app/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (10)Dependencies (18)Versions (25)Used By (0)

Laravel Starter Base App Kit
============================

[](#laravel-starter-base-app-kit)

[![Latest Version on Packagist](https://camo.githubusercontent.com/99467b0454952ffe1f281613e9062a296974844782c2ee2053b766bef7772bda/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6c69676874737a656e7469702f6c61726176656c2d737461727465722d626173652d6170702e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/lightszentip/laravel-starter-base-app)[![Latest Version on Packagist](https://camo.githubusercontent.com/acba52798897b51b6d0a69174369d7e87246f726c1368cdc606cfabadd983d62/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f7061636b61676973742d6a657473747265616d2d626c7565)](https://packagist.org/packages/lightszentip/laravel-starter-base-app#dev-jetstream)[![Latest Version on Packagist](https://camo.githubusercontent.com/d7e3e29760bbb060fe2785815683a80d2fb8a01381109ac4d61d307d293c136d/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f7061636b61676973742d66696c616d656e747068702d626c7565)](https://packagist.org/packages/lightszentip/laravel-starter-base-app#dev-filamentphp)[![Total Downloads](https://camo.githubusercontent.com/0de2c01f396716cd3d9dd5363c83fcb5fa28612564a15b9842f6c0ec25d9cf72/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6c69676874737a656e7469702f6c61726176656c2d737461727465722d626173652d6170702e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/lightszentip/laravel-starter-base-app)[![Larastan](https://github.com/lightszentip/laravel-starter-base-app/actions/workflows/larastan.yml/badge.svg)](https://github.com/lightszentip/laravel-starter-base-app/actions/workflows/larastan.yml)[![Laravel](https://github.com/lightszentip/laravel-starter-base-app/actions/workflows/laravel.yml/badge.svg)](https://github.com/lightszentip/laravel-starter-base-app/actions/workflows/laravel.yml)[![PHPCodeSniffer](https://github.com/lightszentip/laravel-starter-base-app/actions/workflows/phpcodesniffer.yml/badge.svg)](https://github.com/lightszentip/laravel-starter-base-app/actions/workflows/phpcodesniffer.yml)[![PHPmd](https://github.com/lightszentip/laravel-starter-base-app/actions/workflows/phpmd.yml/badge.svg)](https://github.com/lightszentip/laravel-starter-base-app/actions/workflows/phpmd.yml)[![Psalm](https://github.com/lightszentip/laravel-starter-base-app/actions/workflows/psalm.yml/badge.svg)](https://github.com/lightszentip/laravel-starter-base-app/actions/workflows/psalm.yml)

Introduction
------------

[](#introduction)

Laravel Starter Base App Kit is a boilerplate for starting new Laravel projects with a pre-configured setup for code quality tools, environment configuration, and essential packages. This kit aims to streamline the development process by providing a solid foundation for building robust and maintainable Laravel applications.

Installation
------------

[](#installation)

To create a new project using this starter kit, run the following command:

### default with jetstream

[](#default-with-jetstream)

```
composer create-project lightszentip/laravel-starter-base-app
```

### filamentphp

[](#filamentphp)

```
composer create-project lightszentip/laravel-starter-base-app:dev-filamentphp
```

Setup
-----

[](#setup)

After creating the project, navigate to the project directory and set up your environment:

```
cd laravel-starter-base-app
cp .env.example .env
```

Run the database migrations and seeders:

```
php artisan migrate
php artisan db:seed
```

Features
--------

[](#features)

- **Pre-configured Code Quality Tools**: Includes Pint, Larastan, PHPMD, PSALM, and PHPCodeSniffer.
- **Environment Configuration**: Easy setup for environment variables.
- **Essential Packages**: Pre-installed packages for security, static analysis, and more.

Code Quality Tools
------------------

[](#code-quality-tools)

This starter kit comes with several code quality tools pre-configured:

- **Pint**: [Pint Workflow](./.github/workflows/pint.yml)
- **Larastan**: [Larastan Workflow](./.github/workflows/larastan.yml)
- **PHPMD**: [PHPMD Workflow](./.github/workflows/phpmd.yml)
- **PSALM**: [PSALM Workflow](./.github/workflows/psalm.yml)
- **PHPCodeSniffer**: [PHPCodeSniffer Workflow](./.github/workflows/phpcodesniffer.yml)

Usage
-----

[](#usage)

### Running Code Quality Tools

[](#running-code-quality-tools)

To run the code quality tools, use the following commands:

- **Pint**: `./vendor/bin/pint`
- **Larastan**: `./vendor/bin/phpstan analyse`
- **PHPMD**: `./vendor/bin/phpmd app text phpmd.ruleset.xml`
- **PSALM**: `./vendor/bin/psalm`
- **PHPCodeSniffer**: `./vendor/bin/phpcs`

### Environment Configuration

[](#environment-configuration)

Configure your environment variables in the `.env` file. Here are some key settings:

- **APP\_NAME**: The name of your application.
- **APP\_ENV**: The environment your application is running in (local, production, etc.).
- **APP\_KEY**: The application key (use `php artisan key:generate` to generate one).
- **DB\_CONNECTION**: The database connection type (e.g., mysql).
- **DB\_HOST**: The database host.
- **DB\_PORT**: The database port.
- **DB\_DATABASE**: The database name.
- **DB\_USERNAME**: The database username.
- **DB\_PASSWORD**: The database password.

Contributing
------------

[](#contributing)

Contributions are welcome! Please submit a pull request or open an issue to discuss your ideas.

License
-------

[](#license)

This project is licensed under the MIT License. See the [LICENSE](./LICENSE) file for details.

Support
-------

[](#support)

For any issues or questions, please open an issue on the [GitHub repository](https://github.com/lightszentip/laravel-starter-base-app/issues).

###  Health Score

43

—

FairBetter than 91% of packages

Maintenance75

Regular maintenance activity

Popularity12

Limited adoption so far

Community12

Small or concentrated contributor base

Maturity64

Established project with proven stability

 Bus Factor1

Top contributor holds 70.2% 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 ~97 days

Total

4

Last Release

325d ago

PHP version history (2 changes)1.0.0PHP ^8.2

1.2PHP ^8.2||^8.3

### Community

Maintainers

![](https://www.gravatar.com/avatar/5d722951b53368586c9137845a403cb158950e9a0b325d67f470e34e11177aae?d=identicon)[lightszentip](/maintainers/lightszentip)

---

Top Contributors

[![renovate[bot]](https://avatars.githubusercontent.com/in/2740?v=4)](https://github.com/renovate[bot] "renovate[bot] (120 commits)")[![lightszentip](https://avatars.githubusercontent.com/u/3680505?v=4)](https://github.com/lightszentip "lightszentip (42 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (9 commits)")

---

Tags

laravellaravel-applaravel-applicationlaravel-baselaravel-templatelaraveltemplatestarter-kitstarter-kit-laravel

###  Code Quality

TestsPest

Static AnalysisPHPStan, Psalm

Code StyleLaravel Pint

Type Coverage Yes

### Embed Badge

![Health badge](/badges/lightszentip-laravel-starter-base-app/health.svg)

```
[![Health](https://phpackages.com/badges/lightszentip-laravel-starter-base-app/health.svg)](https://phpackages.com/packages/lightszentip-laravel-starter-base-app)
```

###  Alternatives

[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.

3691.5k](/packages/codewithdennis-larament)

PHPackages © 2026

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