chaoswebdev/laravel-kit
最新稳定版本:1.16.1
Composer 安装命令:
composer create-project chaoswebdev/laravel-kit
包简介
My skeleton application for the Laravel framework. Includes SCSS stylings (basic) and Livewire.
README 文档
README
A minimal, modern Laravel v12.* starter kit built for rapid development with clean defaults, Livewire v3, and SCSS-based styling utilities.
📦 Features
- ✅ Laravel 12.*
- ✅ Livewire v3
- ✅ SCSS-ready via Vite (
npm i -D sass) - ✅ Utility-based SCSS (Bootstrap-inspired utility classes)
- ✅ Livewire views organized under
resources/views - ✅ User migration separated into its own clean file
- ✅ Added
APP_TIMEZONEback to.envandconfigs/app.php. Defaults toAmerica/Denver - ✅ User model has
emailandusernamebuilt in to it - ✅ Ability to use MongoDB
🚀 Installation
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 # or ri .git -r -force for windows composer install npm install && npm run dev cp .env.example .env php artisan key:generate
📁 Directory Highlights
resources/styles/→ Built to contain view stylings as partials to be forwarded inapp.scssresources/views/components/layouts/app.blade.php→ Updated default Livewire layout locationdatabase/migrations/→userstable isolated in its own migration
Git
You can commit, version tag, and push using the kit-commit file in the root directory.
php kit-commit -n="Notes Here" -v="0.0.0"The file will then run:
git add . git commit -m $notes git tag v{$version} -m "Release v{$version}" git push git push origin v{$version}
-nand-vare optional. If-vis omitted, the file will attempt to find the next version and parse it in for you.
Example
If you do php kit-commit -n="See Changelog for v0.0.1" -v="0.0.1"
The system will run:
git add . git commit -m "See Changelog for v0.0.1" git tag v0.0.1 -m "Release v0.0.1" git push git push origin v0.0.1
📎 Repo
GitHub: ChaosWebDev/cwd-laravel-kit
Related Project Documentation
统计信息
- 总下载量: 70
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2025-05-09