Download the PHP package marekmiklusek/laravel-starter-kit-livewire without Composer
On this page you can find all versions of the php package marekmiklusek/laravel-starter-kit-livewire. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download marekmiklusek/laravel-starter-kit-livewire
More information about marekmiklusek/laravel-starter-kit-livewire
Files in marekmiklusek/laravel-starter-kit-livewire
Package laravel-starter-kit-livewire
Short Description A Laravel livewire starter kit with code quality tools pre-configured.
License MIT
Informations about the package laravel-starter-kit-livewire
๐ Laravel Livewire Starter Kit
Laravel's official Livewire starter kit enhanced with development workflow tools, code quality standards, and additional developer experience improvements from laravel-starter-kit. โจ
๐ 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 bothmysqlandmariadbconnections.- In
config/essentials.php, models are unguarded by default viaUnguard::class => true. This allows mass assignment without explicitly defining$fillableproperties. You can change this setting if you prefer to use guarded models.
๐ฆ Installation
Create a new Laravel Livewire project:
Run the automated setup script:
This command will:
- Install PHP dependencies via Composer
- Create
.envfile from.env.example(if not exists) - Create
.env.productionfile 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:
๐ Browser Testing Setup (Optional)
If you plan to use Pest's browser testing capabilities, install Playwright:
This installs the necessary browser binaries for running browser tests.
๐ Localization
The starter kit ships with English (en) and Czech (cs) translations. Translation files live in the lang/ directory:
Switch the active language by setting APP_LOCALE in your .env file:
To add another language, create a new lang/{locale}.json for UI strings and a matching lang/{locale}/ directory for the framework files.
๐ Enable / Disable Registration
User self-registration is controlled by a single switch via the FORTIFY_REGISTRATION_ENABLED env variable:
When set to false:
- The
/registerroute is not registered and returns 404 - The "Don't have an account? Sign up" link on the login page is hidden automatically
The flag is also exposed as config()->boolean('fortify.registration_enabled') if you need to read it elsewhere in the application.
๐ Enable / Disable Two-Factor Authentication
Two-factor authentication is controlled by a single switch via the FORTIFY_2FA_ENABLED env variable:
When set to false:
- The
/settings/two-factorroute is not registered and returns 404 - The "Two-Factor Auth" link in the settings sidebar is hidden automatically
- Fortify's
/two-factor-*endpoints (challenge, enable, confirm, recovery codes) are not registered
The TwoFactorAuthenticatable trait stays on the User model โ it is inert without the feature registered, and removing it would break factories that fill 2FA columns. Tests always run with 2FA enabled regardless of .env (forced via phpunit.xml), so the 100% coverage gate is not affected by toggling this flag locally.
๐ Production Environment
The setup script automatically creates a .env.production file. Configure it with production-specific settings:
Configure production environment variables:
- Set
APP_ENV=production - Set
APP_DEBUG=false - Configure production database credentials
- Set secure
APP_KEY(generated during setup) - Configure mail, cache, queue, and session drivers
- Set proper logging channels
๐ป Development
๐ฅ๏ธ Running the Development Server
Start all development services concurrently:
This starts:
- Laravel development server (port 8000) - Your Livewire application
- Queue listener - Background job processing
- Log viewer (Pail) - Real-time log monitoring
- Vite dev server - Hot Module Replacement for CSS/JS
Your Livewire application will be available at http://localhost:8000 ๐
๐ Code Quality
๐งน Linting & Formatting
Fix code style issues:
This runs:
- Rector (PHP refactoring)
- Laravel Pint (PHP formatting)
- Prettier (frontend formatting)
๐งช Testing
Run the full test suite:
This includes:
- Type coverage (100% minimum)
- Code coverage (100% required)
- 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/:
๐งช Testing Livewire Components
Test your Livewire components with Pest's built-in Livewire testing:
๐ Available Scripts
๐ผ Composer Scripts
composer setup- Initial project setupcomposer dev- Run all development servicescomposer 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 update:requirements- Update all dependencies
๐ฆ NPM Scripts
npm run dev- Start Vite dev servernpm run build- Build for productionnpm run lint- Format frontend codenpm run test:lint- Check frontend code style
๐ License
This project is licensed under the MIT License - see the LICENSE file for details.
All versions of laravel-starter-kit-livewire with dependencies
laravel/fortify Version ^1.37.0
laravel/framework Version ^13.7
laravel/tinker Version ^3.0.2
livewire/flux Version ^2.14.1
livewire/volt Version ^1.10.5
nunomaduro/essentials Version ^1.2.0