marekmiklusek / laravel-starter-kit-react
Laravel React starter kit with code quality tools pre-configured.
Package info
github.com/marekmiklusek/laravel-starter-kit-react
Language:TypeScript
Type:project
pkg:composer/marekmiklusek/laravel-starter-kit-react
Requires
- php: ^8.4
- inertiajs/inertia-laravel: ^2.0.21
- laravel/fortify: ^1.35
- laravel/framework: ^12.53
- laravel/tinker: ^2.11.1
- laravel/wayfinder: ^0.1.14
- nunomaduro/essentials: ^1.2.0
Requires (Dev)
- driftingly/rector-laravel: ^2.1.9
- fakerphp/faker: ^1.24.1
- larastan/larastan: ^3.9.3
- laravel/boost: ^2.2.2
- laravel/pail: ^1.2.6
- laravel/pint: ^1.27.1
- laravel/sail: ^1.53
- mockery/mockery: ^1.6.12
- nunomaduro/collision: ^8.9.1
- pestphp/pest: ^4.4.1
- pestphp/pest-plugin-browser: ^4.3.0
- pestphp/pest-plugin-laravel: ^4.1
- pestphp/pest-plugin-type-coverage: ^4.0.3
- rector/rector: ^2.3.8
README
Laravel's official React starter kit enhanced with development workflow tools, code quality standards, and additional developer experience improvements from laravel-starter-kit. โจ
Built with Inertia.js v2, React 19, Tailwind CSS v4, and Laravel Wayfinder.
๐ Requirements
- PHP >= 8.4.0
- Composer
- Node.js & NPM
- MySQL (or your preferred database)
๐ Quick Start
Note
In config/database.php, 'engine' => 'InnoDB', is used as the default for both mysql and mariadb connections.
๐ฆ Installation
Create a new Laravel React project:
composer create-project marekmiklusek/laravel-starter-kit-react --prefer-dist app-name
Run the automated setup script:
composer setup
This command will:
- Install PHP dependencies via Composer
- Create
.envfile from.env.example(if not exists) - Generate application key
- Run database migrations
- Install NPM dependencies
- Build frontend assets
โ๏ธ Additional Setup
๐ง Environment Configuration
After running composer setup, configure your .env file with your database credentials:
DB_CONNECTION=mysql DB_HOST=127.0.0.1 DB_PORT=3306 DB_DATABASE=your_database_name DB_USERNAME=your_username DB_PASSWORD=your_password
๐ Browser Testing Setup (Optional)
If you plan to use Pest's browser testing capabilities, install Playwright:
npm install playwright npx playwright install
This installs the necessary browser binaries for running browser tests.
๐ป Development
๐ฅ๏ธ Running the Development Server
Start all development services concurrently:
composer dev
This starts:
- Laravel development server (port 8000) - Your Inertia + React application
- Queue listener - Background job processing
- Vite dev server - Hot Module Replacement for React/CSS/JS
Your application will be available at http://localhost:8000 ๐
SSR Mode
To run with server-side rendering:
composer dev:ssr
๐ Code Quality
๐งน Linting & Formatting
Fix code style issues:
composer lint
This runs:
- Rector (PHP refactoring)
- Laravel Pint (PHP formatting)
- ESLint & Prettier (frontend formatting)
๐งช Testing
Run the full test suite:
composer test
This includes:
- Type coverage (100% minimum)
- Unit and feature tests (Pest)
- Code style validation
- Static analysis (PHPStan)
๐ Browser Testing
This starter kit includes Pest 4 with browser testing capabilities. Create browser tests in tests/Browser/:
it('displays the welcome page', function () { $page = visit('/'); $page->assertSee('Laravel') ->assertNoJavascriptErrors(); });
๐ Available Scripts
๐ผ Composer Scripts
composer setup- Initial project setupcomposer dev- Run all development servicescomposer dev:ssr- Run with server-side renderingcomposer lint- Fix code style issuescomposer test- Run full test suitecomposer test:unit- Run Pest tests onlycomposer test:types- Run PHPStan analysiscomposer test:type-coverage- Check type coveragecomposer test:lint- Validate code stylecomposer ci:check- Run all CI checks (lint, format, types, tests)
๐ฆ NPM Scripts
npm run dev- Start Vite dev servernpm run build- Build for productionnpm run build:ssr- Build for production with SSRnpm run lint- Fix frontend lint issuesnpm run lint:check- Check frontend lint issuesnpm run format- Format frontend code with Prettiernpm run format:check- Check frontend formattingnpm run types:check- Check TypeScript types
๐ License
This project is licensed under the MIT License - see the LICENSE file for details.