awcodes / jump-start
A custom starter kit for Laravel development, with defaults I like.
Package info
Language:Blade
Type:project
pkg:composer/awcodes/jump-start
v1.0.0
2026-05-14 15:10 UTC
Requires
- php: ^8.3
- laravel/framework: ^13.8
- laravel/tinker: ^3.0
Requires (Dev)
- barryvdh/laravel-debugbar: ^4.2
- fakerphp/faker: ^1.23
- larastan/larastan: ^3.3
- laravel/boost: ^2.2
- laravel/pail: ^1.2.5
- laravel/pao: ^1.0.6
- laravel/pint: ^1.27
- mockery/mockery: ^1.6
- nunomaduro/collision: ^8.6
- pestphp/pest: ^4.7
- pestphp/pest-plugin-laravel: ^4.1
- rector/rector: ^2.0
- spatie/laravel-ray: ^1.40
README
A custom starter kit for Laravel development, with defaults I like.
Installation
laravel new <my-app> --using=awcodes/jump-start --no-interaction
After installation, cd into the project and run:
npm install && npm run build
php artisan db:seed
Boost
If you need to change any of the Boost configurations, you can re-run the Boost installer with:
php artisan boost:install
Includes
- Laravel 13
- Tailwind CSS
- Pint
- Pest
- Rector
- Laravel Debugbar
- Spatie Ray
- Larastan
- Laravel Boost
Tests
There are some test commands available via composer scripts.
# Runs Pint to lint the codebase composer lint # Runs Rector to refactor the codebase composer refactor # Runs Pint in test mode to check for linting issues without fixing them composer test:lint # Runs Rector in dry-run mode to check for refactoring issues without applying changes composer test:refactor # Runs PHPStan to analyze the code for type issues composer test:types # Runs Pest to execute unit tests in parallel composer test:unit # Runs a series of tests including config clear, Rector dry-run, Pint test, PHPStan, and Pest unit tests composer test