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

ActiveProject[Framework](/categories/framework)

chaoswebdev/laravel-kit
=======================

My skeleton application for the Laravel framework. Includes SCSS stylings (basic) and Livewire.

v2.2.2(1mo ago)293MITPHPPHP ^8.4

Since May 9Pushed 1mo ago1 watchersCompare

[ Source](https://github.com/ChaosWebDev/cwd-laravel-kit)[ Packagist](https://packagist.org/packages/chaoswebdev/laravel-kit)[ RSS](/packages/chaoswebdev-laravel-kit/feed)WikiDiscussions main Synced today

READMEChangelogDependencies (29)Versions (43)Used By (0)

CWD Laravel Kit
===============

[](#cwd-laravel-kit)

[![Laravel](https://camo.githubusercontent.com/d0077136b02648c727c5d2413df24fb05fd9cd7378b063474a39187f83252932/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4c61726176656c2d31332e782d7265643f6c6f676f3d6c61726176656c266c6f676f436f6c6f723d7768697465)](https://laravel.com) [![Livewire](https://camo.githubusercontent.com/6b31bb3c81f221a172c7c511b427ffe848ff97a88849aa1ede42ab006712bc16/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4c697665776972652d76342d626c75653f6c6f676f3d6c69766577697265)](https://livewire.laravel.com) [![SCSS](https://camo.githubusercontent.com/1de91174b4fa08a09e542fb01aed7725c40077a73619690b5e650f827c61de38/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f534353532d72656164792d6363363639393f6c6f676f3d73617373266c6f676f436f6c6f723d7768697465)](https://sass-lang.com) [![License: MIT](https://camo.githubusercontent.com/891419a00e04aa0e311068fa8a04eec92cab4f7026c76278279bf2a1da50e578/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d6c69676874677265792e737667)](LICENSE) [![GitHub Stars](https://camo.githubusercontent.com/57b71cc936c8ed0f482b38152c35b2623967aef5296ee336e7dfe0459d06e033/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f73746172732f4368616f735765624465762f6377642d6c61726176656c2d6b69743f7374796c653d736f6369616c)](https://github.com/ChaosWebDev/cwd-laravel-kit/stargazers) [![Total Downloads](https://camo.githubusercontent.com/0ac670b2726fc0ad15cf44de1cab876cb0b64539a1e5c8968a98dba1df23b747/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6368616f737765626465762f6c61726176656c2d6b6974)](https://packagist.org/packages/chaoswebdev/laravel-kit)

A minimal, modern Laravel **v13.x** starter kit built for rapid development with clean defaults, Livewire v4, and SCSS-based styling utilities.

Built for developers who prefer Laravel with minimal frontend overhead, organized SCSS structure, and Livewire-first workflows.

---

📦 Features / Requirements
-------------------------

[](#-features--requirements)

- ✅ PHP v8.4+
- ✅ Laravel 13.x
- ✅ Livewire v4.x
- ✅ SCSS-ready via Vite (`npm i -D sass`)
- ✅ SCSS utility package `cwdscss` included via npm
- ✅ Livewire views organized under `resources/views`
- ✅ User migration separated into its own clean file
- ✅ Config migration for key/value application settings
- ✅ Added `APP_TIMEZONE` back to `.env` and `config/app.php`
- ✅ Defaults timezone to `America/Denver`
- ✅ User model includes both `email` and `username`
- ✅ Compatible with Laravel MongoDB drivers
- ✅ Built-in semantic version sync tooling

---

🧰 Stack
-------

[](#-stack)

- Laravel 13
- Livewire 4
- Vite
- SCSS
- Alpine.js

---

🚀 Installation
--------------

[](#-installation)

`php kit` runs the interactive starter setup utility.

### Create Project

[](#create-project)

```
composer create-project chaoswebdev/laravel-kit my-project-name

cd my-project-name

php kit
```

---

### Clone Manually

[](#clone-manually)

```
git clone https://github.com/ChaosWebDev/cwd-laravel-kit.git your-project-name

cd your-project-name

rm -rf .git
# Windows PowerShell:
# ri .git -r -force

composer install

npm install && npm run dev

cp .env.example .env

php artisan key:generate
```

---

📁 Directory Highlights
----------------------

[](#-directory-highlights)

- `resources/styles/`

    - Intended for SCSS partials forwarded into `app.scss`
- `resources/views/layouts/app.blade.php`

    - Default Livewire layout location
- `database/migrations/`

    - User migration isolated into its own clean migration file

---

🔖 Git Version Workflow
----------------------

[](#-git-version-workflow)

You can commit, version tag, and push using:

```
php artisan sync -m "MESSAGE" -b __
```

The `-b` (*bump*) option accepts:

- `major` / `ma`
- `minor` / `mi`
- `patch` / `p`

This provides lightweight semantic versioning and GitHub workflow automation directly from Artisan.

### Examples

[](#examples)

```
php artisan sync -m "Fixed navbar issue" -b p

php artisan sync -m "Added provider management" -b mi

php artisan sync -m "Refactored authentication system" -b ma
```

---

🎨 Styling
---------

[](#-styling)

`cwdscss` is included by default and can be imported in several ways depending on your needs.

### Import Everything

[](#import-everything)

```
@use "cwdscss" as *;
```

Includes:

- Utilities
- Classes
- Components
- Themes

Outputs CSS.

---

### Core Only (No CSS Output)

[](#core-only-no-css-output)

```
@use "cwdscss/core" as *;
```

Includes:

- Variables
- Mixins
- Themes

Safe to use globally without outputting CSS.

---

### Components

[](#components)

```
@use "cwdscss/components";
```

Includes UI components and layout styles.

Outputs CSS.

---

### Utility Classes

[](#utility-classes)

```
@use "cwdscss/classes";
```

Includes utility helpers such as:

- Spacing
- Flex utilities
- Typography helpers

Outputs CSS.

---

📎 Repository
------------

[](#-repository)

GitHub:

---

📚 Related Documentation
-----------------------

[](#-related-documentation)

- Laravel

- Livewire

- NativePHP

- Laravel MongoDB

---

📄 License
---------

[](#-license)

This project is open-sourced software licensed under the MIT license.

###  Health Score

48

—

FairBetter than 93% of packages

Maintenance94

Actively maintained with recent releases

Popularity12

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity67

Established project with proven stability

 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.

###  Release Activity

Cadence

Every ~9 days

Recently: every ~15 days

Total

42

Last Release

32d ago

Major Versions

v0.1.0 → v1.9.32025-09-03

v1.19.1 → v2.0.02026-03-25

PHP version history (2 changes)v1.0.0PHP ^8.2

v1.17.0PHP ^8.4

### Community

Maintainers

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

---

Top Contributors

[![ChaosWebDev](https://avatars.githubusercontent.com/u/20497517?v=4)](https://github.com/ChaosWebDev "ChaosWebDev (66 commits)")

---

Tags

frameworklaravelchaoswd

###  Code Quality

TestsPHPUnit

### Embed Badge

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

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

###  Alternatives

[nasirkhan/laravel-starter

A CMS like modular Laravel starter project.

1.4k2.7k](/packages/nasirkhan-laravel-starter)[unopim/unopim

UnoPim Laravel PIM

10.5k2.4k](/packages/unopim-unopim)[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.

3991.8k](/packages/codewithdennis-larament)[ercogx/laravel-filament-starter-kit

This is a Filament v5 Starter Kit for Laravel 13, designed to accelerate the development of Filament-powered applications.

461.7k](/packages/ercogx-laravel-filament-starter-kit)[raugadh/fila-starter

Laravel Filament Starter.

625.1k](/packages/raugadh-fila-starter)

PHPackages © 2026

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