marekmiklusek/laravel-starter-kit
最新稳定版本:v1.0.1
Composer 安装命令:
composer create-project marekmiklusek/laravel-starter-kit
包简介
A type-safe Laravel starter kit for developers who value code quality.
关键字:
README 文档
README
A super cool Laravel 12 starter kit coming from @nunomaduro, with some modifications. ✨
✨ Features
- Laravel 12 🔥 - Latest Laravel framework with streamlined structure
- PHP 8.4 ⚡ - Modern PHP features and performance
- Tailwind CSS 4 🎨 - Latest Tailwind with Vite integration
- Pest 4 🧪 - Advanced testing with browser testing support
- Code Quality Tools 🛠️ - PHPStan, Laravel Pint, Rector, Prettier
- Development Workflow 🔄 - Concurrent dev server, queue, logs, and Vite
📋 Requirements
- PHP >= 8.4.0
- Composer
- Node.js & NPM
- MySQL (or your preferred database)
🚀 Quick Start
📦 Installation
Create a new Laravel project:
composer create-project marekmiklusek/laravel-starter-kit --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) - 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:
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.
🚀 Production Environment
The setup script automatically creates a .env.production file. Configure it with production-specific settings:
# Edit .env.production with your production 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:
composer dev
This starts:
- Laravel development server (port 8000)
- Queue listener
- Log viewer (Pail)
- Vite dev server (Hot Module Replacement)
🔍 Code Quality
🧹 Linting & Formatting
Fix code style issues:
composer lint
This runs:
- Rector (PHP refactoring)
- Laravel Pint (PHP formatting)
- 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 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.
统计信息
- 总下载量: 8
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2025-11-06