sumardi/filament-starter-kit

Filament starter kit for the Laravel framework.

Installs: 2

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 0

Forks: 0

Open Issues: 0

Type:project

pkg:composer/sumardi/filament-starter-kit

This package is auto-updated.

Last update: 2025-12-09 15:34:56 UTC


README

Pint PEST PHPStan PHPStan

Kickstart your project with pre-configured Filament admin panel. Only essential development tools are included.

Note

Requires PHP 8.4 or higher.

What's Included

Core Dependencies

  • Laravel 12.x - The PHP framework
  • FilamentPHP 4.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

  • laravel/sail - Docker-based development environment
  • larastan/larastan - Static analysis
  • laravel/pint - Code style fixer
  • pestphp/pest - Testing framework
  • rector/rector - Automated refactoring
  • vemcogroup/laravel-translation - Scan your app for translations and create your *.json file

Quick Start

If you have installed PHP and Composer, you may create a new project using the Composer create-project command:

composer create-project sumardi/filament-starter-kit your-project-name
cd your-project-name 
composer install
npm install
npm run build
php artisan serve

Or, you may create a new project using the Laravel Installer:

composer global require laravel/installer
laravel new your-project-name --using=sumardi/filament-starter-kit
cd your-project-name
php artisan serve