druidweb / druid
The skeleton application for the Laravel framework.
Installs: 15
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
Language:Vue
Type:project
pkg:composer/druidweb/druid
Requires
- php: ^8.4
- inertiajs/inertia-laravel: ^2.0.18
- laravel/fortify: ^1.33.0
- laravel/framework: ^12.45.1
- laravel/sanctum: ^4.2.2
- laravel/tinker: ^2.11.0
- laravel/wayfinder: ^0.1.12
- mobiledetect/mobiledetectlib: ^4.8.09
- nunomaduro/essentials: ^1.0.1
- zenphp/snowflake: ^3.2.1
Requires (Dev)
- driftingly/rector-laravel: ^2.1.9
- druidweb/genx: ^1.0.0
- fakerphp/faker: ^1.24.1
- larastan/larastan: ^3.8.1
- mockery/mockery: ^1.6.12
- nunomaduro/collision: ^8.8.3
- pestphp/pest: ^4.3.1
- pestphp/pest-plugin-laravel: ^4.0.0
- pestphp/pest-plugin-type-coverage: ^4.0.3
- rector/rector: ^2.3.0
- zenphp/fixr: ^1.0.4
- zenphp/zorah: ^1.0.7
- 1.x-dev
- v1.4.2
- v1.4.1
- v1.4.0
- v1.3.0
- v1.2.9
- v1.2.8
- v1.2.7
- v1.2.6
- v1.2.5
- v1.2.4
- v1.2.3
- v1.2.2
- v1.2.1
- v1.2.0
- v1.1.6
- v1.1.5
- v1.1.4
- v1.1.3
- v1.1.2
- v1.1.1
- v1.1.0
- v1.0.5
- v1.0.4
- v1.0.3
- v1.0.2
- v1.0.1
- v1.0.0
- dev-main
- dev-dependabot/npm_and_yarn/main/rollup/rollup-win32-x64-msvc-4.55.1
- dev-dependabot/npm_and_yarn/main/types/node-25.0.3
- dev-dependabot/npm_and_yarn/main/lucide-vue-next-0.562.0
- dev-dependabot/npm_and_yarn/main/rollup/rollup-linux-x64-gnu-4.55.1
- dev-dependabot/composer/main/rector/rector-2.2.10
- dev-dependabot/composer/main/laravel/framework-12.40.2
- dev-dependabot/composer/main/laravel/boost-1.8.3
- dev-dependabot/composer/main/driftingly/rector-laravel-2.1.4
- dev-dependabot/composer/main/laravel/tinker-2.10.2
- dev-dependabot/composer/main/laravel/sail-1.48.1
- dev-dependabot/composer/main/nunomaduro/collision-8.8.3
- dev-dependabot/composer/main/laravel/fortify-1.32.1
- dev-dependabot/composer/main/larastan/larastan-3.8.0
- dev-dependabot/composer/main/pestphp/pest-plugin-type-coverage-4.0.3
This package is auto-updated.
Last update: 2026-01-07 21:24:19 UTC
README
Druid Starter Kit
The most comprehensive and battle-tested Laravel + Vue starter kit available. Built with modern best practices, complete testing coverage, and production-ready tooling to accelerate your development from day one. Features cutting-edge technologies like Laravel 12, Vue 3 with TypeScript, Tailwind 4, and a complete CI/CD pipeline with automated testing and deployment.
Unlike other starter kits that give you a basic setup and leave you to figure out the rest, Druid provides a complete development ecosystem. Every component is tested, every workflow is automated, and every decision has been made with scalability and maintainability in mind. From comprehensive testing with Pest and Vitest to automated semantic releases, this isn't just a starter kit, it's a complete foundation for building production applications that can grow with your business.
Druid includes all Laravel Jetstream and Fortify features - Teams, API tokens, profile management, two-factor authentication, browser sessions, password reset, email verification, and more - rebuilt from the ground up with Vue 3, TypeScript, and 100% test coverage.
Features
Core Stack
- ๐ Laravel 12 - Latest Laravel with PHP 8.4+ support
- โก๏ธ Vue 3 with Vite and SSR support
- ๐งฉ Shadcn-Vue - Beautiful, accessible UI components
- ๐ง TypeScript - Full type safety across the stack
- ๐จ Tailwind 4 with dark mode support
- ๐ฑ Inertia.js - Modern SPAs without API complexity
Authentication & Security (Fortify + Jetstream Features)
- ๐ Two-Factor Authentication - TOTP-based 2FA with recovery codes
- ๐ API Token Management - Personal access tokens with granular permissions
- ๐ฅ Team Management - Create teams, invite members, assign roles
- ๐ง Team Invitations - Email-based invitations with signed URLs
- ๐ผ๏ธ Profile Photos - User avatar uploads with automatic storage
- ๐ Browser Sessions - View and logout other active sessions
- ๐๏ธ Account Deletion - Self-service deletion with confirmation
- ๐ Terms & Privacy Policy - Legal document pages with agreement tracking
- ๐ Password Reset - Secure email-based password recovery
- โ๏ธ Email Verification - Verified email enforcement
- ๐ Password Confirmation - Sensitive action protection
- ๐ก๏ธ Laravel Fortify - Backend authentication scaffolding
- ๐ Laravel Sanctum - Cookie and token-based API auth
Developer Experience
- ๐งช Pest PHP - Elegant testing with 100% code coverage
- โก๏ธ Vitest - Lightning-fast JavaScript unit testing
- ๐ Larastan - Static analysis at max level
- ๐ ESLint + Prettier - Consistent code style
- ๐ Automated semantic releases with conventional commits
- ๐ท GitHub Actions CI/CD with parallel testing
- ๐ฏ 100% code coverage with automated badge reporting
Feature Configuration
All Jetstream-equivalent features are configurable in config/teams.php:
'features' => [ Features::termsAndPrivacyPolicy(), // Terms of Service & Privacy Policy pages Features::profilePhotos(), // User profile photo uploads Features::api(), // API token management Features::teams(['invitations' => true]), // Teams with email invitations Features::accountDeletion(), // Self-service account deletion ],
Simply remove any feature from the array to disable it. The UI automatically adapts to show only enabled features.
Requirements
- PHP 8.4 or higher
- Composer 2+
- Node.js 24+ (preferably Bun)
- SQLite / MySQL / PostgreSQL
Installation
First, ensure you have the Laravel installer v5.14+ installed globally:
composer global require laravel/installer
Then create a new Laravel application using this starter kit:
laravel new --using=druidweb/druid
For more information about Laravel starter kits, please refer to the Laravel documentation.
Development
# Update all dependencies bun run cb # Start development server composer dev # Build for production bun run build # Format code composer lint # Run PHP static, type, and feature tests composer test # Run JavaScript tests --currently 89% coverage bun run test
Maintenance Branches
This starter kit follows semantic versioning using maintenance branches:
main- Latest development versionN.x- Maintenance branches for major versions (e.g.,1.x,2.x)
Contributing
Please see CONTRIBUTING.md for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
License
The MIT License (MIT). Please see License File for more information.