codewithdennis / larament
Larament is a time-saving starter kit to quickly launch Laravel 13.x projects. It includes FilamentPHP 5.x pre-installed and configured, along with additional tools and features to streamline your development workflow.
Package info
github.com/CodeWithDennis/larament
Language:Blade
Type:project
pkg:composer/codewithdennis/larament
Fund package maintenance!
Requires
- php: ^8.3
- filament/filament: ^5.0
- laravel/framework: ^13.0
- laravel/tinker: ^3.0
- nunomaduro/essentials: ^1.2
- psy/psysh: ^0.12.19
- symfony/process: ^7.4
Requires (Dev)
- fakerphp/faker: ^1.23
- fruitcake/laravel-debugbar: ^4.0
- larastan/larastan: ^3.0
- laravel/boost: ^2.0
- laravel/pail: ^1.2.2
- laravel/pint: ^1.13
- laravel/sail: ^1.41
- mockery/mockery: ^1.6
- nunomaduro/collision: ^8.6
- pestphp/pest: ^v4.3.0
- pestphp/pest-plugin-browser: v4.0.3
- pestphp/pest-plugin-faker: ^v4.0.0
- pestphp/pest-plugin-laravel: ^v4.0.0
- pestphp/pest-plugin-livewire: ^v4.0.1
- phpunit/phpunit: ^12.5.8
- rector/rector: ^2.0
- 6.x-dev
- v6.1.0
- v6.0.4
- v6.0.3
- v6.0.2
- v6.0.1
- v6.0.0
- 5.x-dev
- v5.1.4
- v5.1.3
- v5.1.2
- v5.1.1
- v5.1.0
- v5.0.3
- v5.0.2
- v5.0.1
- v5.0.0
- 4.x-dev
- v4.1.5
- v4.1.4
- v4.1.3
- v4.1.2
- v4.1.1
- v4.1.0
- v4.0.20
- v4.0.19
- v4.0.18
- v4.0.17
- v4.0.16
- v4.0.15
- v4.0.14
- v4.0.13
- v4.0.12
- v4.0.11
- v4.0.10
- v4.0.9
- v4.0.8
- v4.0.7
- v4.0.6
- v4.0.5
- v4.0.4
- v4.0.3
- v4.0.2
- v4.0.1
- v4.0.0
- 3.x-dev
- v1.0.4
- v1.0.3
- v1.0.2
- v1.0.1
- v1.0.0
- v0.0.25
- v0.0.24
- v0.0.23
- v0.0.22
- v0.0.21
- v0.0.20
- v0.0.19
- v0.0.18
- v0.0.17
- v0.0.16
- v0.0.15
- v0.0.14
- v0.0.13
- v0.0.12
- v0.0.11
- v0.0.10
- v0.0.9
- v0.0.8
- v0.0.7
- v0.0.6
- v0.0.5
- v0.0.4
- v0.0.3
- v0.0.2
- v0.0.1
- dev-upgrade-and-cleanup
- dev-update-vuln-packages
This package is auto-updated.
Last update: 2026-04-20 17:38:21 UTC
README
A bloat-free starter kit for Laravel 13.x with FilamentPHP 5.x pre-configured. Only essential development tools included.
Note
Requires PHP 8.3 or higher.
What's Included
Core Dependencies
- Laravel 13.x - The PHP framework
- FilamentPHP 5.x - Admin panel with SPA mode, custom theme, and MFA enabled
- nunomaduro/essentials - Better Laravel defaults (strict models, auto-eager loading, immutable dates)
Development Tools
- larastan/larastan - Static analysis
- laravel/pint - Code style fixer
- pestphp/pest - Testing framework
- rector/rector - Automated refactoring
- fruitcake/laravel-debugbar - Development insights
Testing
Includes a comprehensive test suite with PEST 4.x including browser testing - perfect for learning testing or as a reference for your own tests.
GitHub Workflows
Comes with pre-configured GitHub Actions workflows for automated quality assurance:
- Tests - PEST 4.x testing with 4 parallel shards for faster CI/CD
- PHPStan - Static analysis and type checking
- Pint - Automated code style fixing with auto-commit
Quick Start
composer create-project codewithdennis/larament your-project-name
cd your-project-name
composer install
php artisan boost:install
npm install
npm run build
php artisan serve
After composer install, run php artisan boost:install once per project. Laravel Boost writes the editor and assistant integrations this stack expects—guidance rules, MCP configuration, and the rest—already scoped to your paths and environment. Those files are intentionally omitted from the starter kit, so you generate them locally after install.
If you use an AI-powered editor or coding assistant, enable MCP (Model Context Protocol) for this project in that tool’s settings, then turn on the Laravel Boost MCP server. Your assistant can then reach Boost’s Laravel-aware tools instead of working without project context.
Features
Filament Admin Panel
- SPA mode enabled
- Custom login page with autofilled credentials in local environment
- Custom theme included
- Profile management enabled
- MFA (App Authentication) enabled
Filament Tables
- Striped rows for better visual separation
- Deferred loading for improved performance
Development Workflow
composer review # Runs Pint, Rector, PHPStan, and Pest
Customizations
Migration Stubs
Custom stubs remove the down() method by default. Remove the custom stubs to use Laravel's default templates.
Helper Functions
Add your own helpers in app/Helpers.php:
if (! function_exists('example')) { function example(): string { return 'Your helper function here.'; } }
Terminal Aliases
Simple Alias
alias larament="composer create-project --prefer-dist CodeWithDennis/larament" larament my-project
Advanced Function (Example with Herd)
Add this to your ~/.bashrc, ~/.zshrc, or shell configuration file:
function larament() { local cmd="$1" shift case "$cmd" in new) if [[ -z "$1" ]]; then return 1 fi local project_name="$1" composer create-project --prefer-dist CodeWithDennis/larament "$project_name" || return 1 cd "$project_name" || return 1 # Update APP_URL in .env if [[ -f ".env" ]]; then sed -i '' "s|^APP_URL=.*|APP_URL=https://${project_name}.test|" .env fi herd link --secure && herd open ;; *) return 1 ;; esac }
Usage:
larament new my-project


