chaoswebdev / laravel-kit
My skeleton application for the Laravel framework. Includes SCSS stylings (basic) and Livewire.
Package info
github.com/ChaosWebDev/cwd-laravel-kit
Type:project
pkg:composer/chaoswebdev/laravel-kit
Requires
- php: ^8.4
- chaoswd/laravel-mongo-models: ^1.0
- laravel/framework: ^13.7
- laravel/tinker: ^3.0
- livewire/livewire: ^4.1
Requires (Dev)
- fakerphp/faker: ^1.23
- dev-main
- v2.2.1
- v2.2.0
- 2.1.1
- 2.1.0
- v2.0.0
- v1.19.1
- v1.19.0
- v1.17.0
- 1.16.1
- 1.16.0
- 1.15.1
- v1.15.0
- v1.14.0
- v1.13.0
- v1.12.2
- v1.12.1
- v1.11.2
- v1.11.1
- v1.11.0
- v1.10.0
- v1.9.4
- v1.9.3
- v1.9.1
- v1.9.0
- v1.8.0
- v1.7.3
- v1.7.2
- v1.7.1
- v1.7.0
- v1.6.0
- v1.5.0
- v1.4.0
- v1.3.2
- v1.3.1
- v1.3.0
- v1.2.1
- v1.2.0
- v1.1.1
- v1.1.0
- v1.0.0
- v0.1.0
This package is auto-updated.
Last update: 2026-05-12 18:17:38 UTC
README
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
- ✅ PHP v8.4+
- ✅ Laravel 13.x
- ✅ Livewire v4.x
- ✅ SCSS-ready via Vite (
npm i -D sass) - ✅ SCSS utility package
cwdscssincluded 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_TIMEZONEback to.envandconfig/app.php - ✅ Defaults timezone to
America/Denver - ✅ User model includes both
emailandusername - ✅ Compatible with Laravel MongoDB drivers
- ✅ Built-in semantic version sync tooling
🧰 Stack
- Laravel 13
- Livewire 4
- Vite
- SCSS
- Alpine.js
🚀 Installation
php kit runs the interactive starter setup utility.
Create Project
composer create-project chaoswebdev/laravel-kit my-project-name
cd my-project-name
php kit
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
-
resources/styles/- Intended for SCSS partials forwarded into
app.scss
- Intended for SCSS partials forwarded into
-
resources/views/layouts/app.blade.php- Default Livewire layout location
-
database/migrations/- User migration isolated into its own clean migration file
🔖 Git Version Workflow
You can commit, version tag, and push using:
php artisan sync -m "MESSAGE" -b __
The -b (bump) option accepts:
major/maminor/mipatch/p
This provides lightweight semantic versioning and GitHub workflow automation directly from Artisan.
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
cwdscss is included by default and can be imported in several ways depending on your needs.
Import Everything
@use "cwdscss" as *;
Includes:
- Utilities
- Classes
- Components
- Themes
Outputs CSS.
Core Only (No CSS Output)
@use "cwdscss/core" as *;
Includes:
- Variables
- Mixins
- Themes
Safe to use globally without outputting CSS.
Components
@use "cwdscss/components";
Includes UI components and layout styles.
Outputs CSS.
Utility Classes
@use "cwdscss/classes";
Includes utility helpers such as:
- Spacing
- Flex utilities
- Typography helpers
Outputs CSS.
📎 Repository
GitHub: https://github.com/ChaosWebDev/cwd-laravel-kit
📚 Related Documentation
-
NativePHP
https://nativephp.com/docs/desktop/2/getting-started/introduction -
Laravel MongoDB
https://github.com/mongodb/laravel-mongodb
📄 License
This project is open-sourced software licensed under the MIT license.