awcodes/jump-start

A custom starter kit for Laravel development, with defaults I like.

Maintainers

Package info

github.com/awcodes/jump-start

Language:Blade

Type:project

pkg:composer/awcodes/jump-start

Statistics

Installs: 2

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

v1.0.0 2026-05-14 15:10 UTC

This package is auto-updated.

Last update: 2026-05-14 21:41:38 UTC


README

A custom starter kit for Laravel development, with defaults I like.

MIT Licensed

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