| Install | |
|---|---|
composer require modus-digital/laravel-starter-kit |
|
| Latest Version: | v1.1.2 |
| PHP: | ^8.2 |
A comprehensive Laravel starter kit by Modus Digital for quickly bootstrapping new Laravel applications with built-in features and best practices.
This starter kit has a couple default useful functionalities to easily get started with a new project. The following features are included in this starter kit:
npm install --global corepack@latest && corepack enable pnpm # Using corepack
npm install --global pnpm@@latest-10 # Using npm directly
composer global require laravel/installer
laravel new <project name> --using=modus-digital/laravel-starter-kit
cd <project name>
git clone https://github.com/modus-digital/laravel-starter-kit.git your-project-name
cd your-project-name
composer install
pnpm install
# Copy environment file
cp .env.example .env
# Generate application key
php artisan key:generate
# Create SQLite database (or configure your preferred database in .env)
touch database/database.sqlite
# Run migrations
php artisan migrate --seed
Start the development server with a single command:
composer dev
This command starts:
Add The site to Laravel Herd and run Vite
pnpm run dev
Run the test suite:
composer test
The starter kit includes several code quality tools:
MIT
Created and maintained by Modus Digital.