PHPackages                             vocalio/laravel-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. vocalio/laravel-starter-kit

ActiveLibrary[Framework](/categories/framework)

vocalio/laravel-starter-kit
===========================

Laravel Starter Kits with all the necessary tools and configurations to kickstart your next project.

1.0.3(1y ago)0822↓50%[3 PRs](https://github.com/vocalio/laravel-starter-kit/pulls)MITPHPPHP ^8.2CI passing

Since Jul 18Pushed 1mo ago2 watchersCompare

[ Source](https://github.com/vocalio/laravel-starter-kit)[ Packagist](https://packagist.org/packages/vocalio/laravel-starter-kit)[ Docs](https://github.com/vocalio/laravel-starter-kit)[ GitHub Sponsors](https://github.com/vocalio)[ RSS](/packages/vocalio-laravel-starter-kit/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (4)Dependencies (13)Versions (9)Used By (0)

Laravel Starter Kit
===================

[](#laravel-starter-kit)

[![Latest Version on Packagist](https://camo.githubusercontent.com/867b199c4d859ce4f1f030cb7a6553d4f3650f9dd2b228a57c3f4633a00f9c29/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f766f63616c696f2f6c61726176656c2d737461727465722d6b69742e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/vocalio/laravel-starter-kit)[![GitHub Tests Action Status](https://camo.githubusercontent.com/168ce57837ae41b36aa2d2bdc49f59abfc3e6bfc6ecd4171eddbd56b2a0cf93e/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f766f63616c696f2f6c61726176656c2d737461727465722d6b69742f72756e2d74657374732e796d6c3f6272616e63683d6d61696e266c6162656c3d7465737473267374796c653d666c61742d737175617265)](https://github.com/vocalio/laravel-starter-kit/actions?query=workflow%3Arun-tests+branch%3Amain)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/f04cba140aa81a59f4b73bd330cbe8cc7bbc3a6faff968f5b3fcb8af3f98254f/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f766f63616c696f2f6c61726176656c2d737461727465722d6b69742f6669782d7068702d636f64652d7374796c652d6973737565732e796d6c3f6272616e63683d6d61696e266c6162656c3d636f64652532307374796c65267374796c653d666c61742d737175617265)](https://github.com/vocalio/laravel-starter-kit/actions?query=workflow%3A%22Fix+PHP+code+style+issues%22+branch%3Amain)[![Total Downloads](https://camo.githubusercontent.com/64567f742c894ab55caba72a89674d6494a0e09eb62aaf40e54ab49c184d1ec2/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f766f63616c696f2f6c61726176656c2d737461727465722d6b69742e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/vocalio/laravel-starter-kit)

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

[](#installation)

Get started with Laravel Starter Kit by installing it via Composer:

```
composer require vocalio/laravel-starter-kit
```

After installation, run the setup command:

```
php artisan starter-kit:install
```

Usage
-----

[](#usage)

During the installation process, you'll be guided through selecting the features you'd like to incorporate into your project.

### Available Features

[](#available-features)

- Larastan
- Pest
- Duster (TLint, PHP\_CodeSniffer, PHP CS Fixer, Pint)
- Tailwind CSS
- Filament
- DB updates
- Prettier
- Github Actions

Feature Details
---------------

[](#feature-details)

### Larastan

[](#larastan)

Enhance your code quality with static analysis. We provide a pre-configured Larastan setup at level 7. Customize your configuration in the `phpstan.neon` file.

Run Larastan with:

```
vendor/bin/phpstan analyse
```

### Pest

[](#pest)

We've chosen Pest as our testing framework. Our setup includes pre-configured Architectural tests.

Execute Pest tests using:

```
php artisan test
```

### Duster

[](#duster)

Maintain clean and consistent code with Duster. It integrates TLint, PHP\_CodeSniffer, PHP CS Fixer, and Pint to check and fix your code style.

For more information, refer to the [Duster documentation](https://github.com/tighten/duster)

### Tailwind CSS

[](#tailwind-css)

Opt for Tailwind CSS to get a default configuration ready for your project.

### Filament

[](#filament)

Choose Filament to install the package with a default configuration.

### DB updates

[](#db-updates)

Our DB updates feature simplifies database modifications and fixes. It operates similarly to Laravel migrations.

#### Usage

[](#usage-1)

Generate a new DB update:

```
php artisan db-update:create
```

This creates a new file in `database/updates`. Here are some examples of what you can do:

Update database values after refactoring:

```
public function __invoke(): void
{
    Order::query()
        ->where('state', 'new')
        ->update(['state' => OrderState::CREATED]);
}
```

Clean up test data from your production database:

```
public function __invoke(): void
{
    Order::query()
        ->whereDate('created_at', ' (Your project) -> Settings -> Actions -> General -> Workflow permissions` and select `Read and write permissions`.

Testing
-------

[](#testing)

```
composer test
```

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

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

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

Security Vulnerabilities
------------------------

[](#security-vulnerabilities)

Please review [our security policy](../../security/policy) on how to report security vulnerabilities.

Credits
-------

[](#credits)

- [dommer1](https://github.com/dommer1)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

41

—

FairBetter than 89% of packages

Maintenance69

Regular maintenance activity

Popularity15

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity58

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 63% 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 ~72 days

Total

4

Last Release

445d ago

### Community

Maintainers

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

---

Top Contributors

[![dommer1](https://avatars.githubusercontent.com/u/17235665?v=4)](https://github.com/dommer1 "dommer1 (17 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (5 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (5 commits)")

---

Tags

laravellaravel-starter-kitvocalio

###  Code Quality

TestsPest

Static AnalysisPHPStan

Code StyleLaravel Pint

### Embed Badge

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

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

###  Alternatives

[lunarstorm/laravel-ddd

A Laravel toolkit for Domain Driven Design patterns

17959.0k](/packages/lunarstorm-laravel-ddd)[bezhansalleh/filament-plugin-essentials

A collection of essential traits that streamline Filament plugin development by taking care of the boilerplate, so you can focus on shipping real features faster

27584.7k16](/packages/bezhansalleh-filament-plugin-essentials)[vormkracht10/laravel-mails

Laravel Mails can collect everything you might want to track about the mails that has been sent by your Laravel app.

24149.7k](/packages/vormkracht10-laravel-mails)[jonpurvis/squeaky

A Laravel Validation Rule to Help Catch Profanity.

706.0k](/packages/jonpurvis-squeaky)[rockero-cz/laravel-starter-kit

Speed up the kickoff of your Laravel projects.

327.5k](/packages/rockero-cz-laravel-starter-kit)

PHPackages © 2026

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