webmintydotcom / laravel-quickstart
Laravel starter kit with common addons.
Installs: 7
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
Type:project
Requires
- php: ^8.3
- laravel/framework: ^12.0
- laravel/tinker: ^2.10.1
- livewire/flux: ^2.0
- livewire/livewire: ^3.6
- spatie/laravel-data: ^4.17
- spatie/laravel-ray: ^1.40
- spatie/pest-expectations: ^1.11
Requires (Dev)
- fakerphp/faker: ^1.23
- larastan/larastan: ^3.6
- laravel/pail: ^1.2.2
- laravel/pint: ^1.24
- laravel/sail: ^1.41
- mockery/mockery: ^1.6
- nunomaduro/collision: ^8.6
- pestphp/pest: ^3.8
- pestphp/pest-plugin-faker: ^3.0
- pestphp/pest-plugin-laravel: ^3.2
- pestphp/pest-plugin-livewire: ^3.0
- pestphp/pest-plugin-type-coverage: ^3.6
- rector/rector: ^2.1
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.
Spatie Laravel Data
Spatie Laravel Data is included to help you create data transfer objects (DTOs) in a simple and elegant way.
Debugging
Spatie Laravel Ray
Spatie Laravel Ray is included to help you debug your Laravel applications with ease.
Testing
Pest
Pest is included to help you write expressive and elegant tests for your Laravel applications.
Spatie Pest Expectations
Spatie Pest Expectations is included to help you write expressive and readable tests using Pest.
Pest Plugin - Faker
Pest Plugin - Laravel
Pest Plugin - Livewire
Pest Plugin - Type Coverage
Larastan
Larastan is included to help you catch type errors in your Laravel applications using PHPStan.
Pint
Pint is included to help you format your Laravel code according to the Webminty coding standard.
Rector
Rector is included to help you refactor and upgrade your Laravel codebase automatically.
NPM
Tailwind CSS
Tailwind CSS is included to help you build modern and responsive user interfaces with ease.
Prettier
Prettier is included to help you format your code consistently across your project.
Prettier Plugin - Tailwind CSS
Prettier Plugin for Tailwind CSS is included to help you format your Tailwind CSS classes automatically.
Prettier Plugin - Blade
Prettier Plugin for Blade is included to help you format your Blade templates automatically.
DaisyUI
DaisyUI is included to help you build beautiful and customizable user interfaces with Tailwind CSS.
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');