webmintydotcom/laravel-quickstart

Laravel starter kit with common addons.

dev-main 2025-08-02 18:31 UTC

This package is auto-updated.

Last update: 2025-08-02 18:31:10 UTC


README

Introduction

This is a starter kit for Laravel applications that includes Livewire, Tailwind CSS, and other useful packages and configurations. It is designed to help you quickly set up a new Laravel project with a modern development environment.

Installation

laravel new my-app --pest --npm --using=webmintydotcom/laravel-quickstart

Included Packages

Laravel

Version 12 of Laravel is used in this starter kit.

Livewire

Livewire is included to help you build dynamic interfaces without leaving the comfort of Laravel.

Homepage

Docs

Spatie Laravel Data

Spatie Laravel Data is included to help you create data transfer objects (DTOs) in a simple and elegant way.

Docs

Debugging

Spatie Laravel Ray

Spatie Laravel Ray is included to help you debug your Laravel applications with ease.

Homepage

Docs

Testing

Pest

Pest is included to help you write expressive and elegant tests for your Laravel applications.

Homepage

Docs

Spatie Pest Expectations

Spatie Pest Expectations is included to help you write expressive and readable tests using Pest.

Docs

Pest Plugin - Faker

Docs

Pest Plugin - Laravel

Docs

Pest Plugin - Livewire

Docs

Pest Plugin - Type Coverage

Docs

Larastan

Larastan is included to help you catch type errors in your Laravel applications using PHPStan.

Docs

Pint

Pint is included to help you format your Laravel code according to the Webminty coding standard.

Docs

Rector

Rector is included to help you refactor and upgrade your Laravel codebase automatically.

Docs

NPM

Tailwind CSS

Tailwind CSS is included to help you build modern and responsive user interfaces with ease.

Homepage

Docs

Prettier

Prettier is included to help you format your code consistently across your project.

Homepage

Docs

Prettier Plugin - Tailwind CSS

Prettier Plugin for Tailwind CSS is included to help you format your Tailwind CSS classes automatically.

Docs

Prettier Plugin - Blade

Prettier Plugin for Blade is included to help you format your Blade templates automatically.

Docs

DaisyUI

DaisyUI is included to help you build beautiful and customizable user interfaces with Tailwind CSS.

Homepage

Docs

Additional Configurations

Changes to the default Laravel files are included in this starter kit to improve performance and developer experience.

app/Providers/AppServiceProvider.php

Model::preventLazyLoading();

if ($this->app->isProduction()) {
    Model::handleLazyLoadingViolationUsing(function ($model, $relation) {
        $class = get_class($model);

        info("Attempted to lazy load [{$relation}] on model [{$class}].");
    });
    DB::prohibitDestructiveCommands();
} else {
    Model::preventAccessingMissingAttributes();
    Model::preventSilentlyDiscardingAttributes();
    Model::shouldBeStrict();
}

Vite::usePrefetchStrategy('aggressive');