rizort / laravel-starter-kits
🚀 Laravel 12 templates including Vue.js 3, PrimeVue 4 and related libs.
Installs: 5
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 24 661
pkg:composer/rizort/laravel-starter-kits
Requires
- php: ^8.2
- laravel/framework: ^12.0
- laravel/tinker: ^2.10.1
Requires (Dev)
- fakerphp/faker: ^1.23
- laravel/pail: ^1.2.2
- laravel/pint: ^1.24
- laravel/sail: ^1.41
- mockery/mockery: ^1.6
- nunomaduro/collision: ^8.6
- phpunit/phpunit: ^11.5.3
This package is not auto-updated.
Last update: 2026-01-13 08:27:49 UTC
README
Laravel 12 + Tailwind CSS 4 + Vue.js 3 + PrimeVue 4
Starter kits for quick project creation. For easy tracking of changes and updates, each starter kit is located in a separate branch. They also contain some demo content which can be easily removed.
💎 Features
- Fork from the original repository. You can easily see all the applied changes.
- Minimal number of dependencies.
🔧 Installation
Select one of available starter kits, which located in separate branches.
# Laravel 12 + Vue.js 3 template composer create-project rizort/laravel-starter-kits project dev-vue3 # Laravel 12 + Vue.js 3 + PrimeVue 4 template composer create-project rizort/laravel-starter-kits project dev-vue3-primevue4 # Install dependencies composer setup
🚀 Runing
The project will be available at http://localhost:8000.
composer dev
📁 Demo content
You can remove all demo content.
rm -rf resources/js/components/demo
🔎 Sync with Laravel repository
If you want to update the framework version used in the template, you can run these commands.
git remote add upstream https://github.com/laravel/laravel.git git fetch upstream git rebase upstream/12.x
