ezappslab / laravel-jumpstart
Installs: 3
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
Language:Blade
Requires
- php: ^8.0
- laravel/framework: ^10.0|^11.0
- spatie/laravel-package-tools: ^1.16
Requires (Dev)
- larastan/larastan: ^2.9
- laravel/pint: ^1.15
- nunomaduro/collision: ^8.1
- orchestra/testbench: ^9.0
- pestphp/pest: ^2.34
- pestphp/pest-plugin-arch: ^2.7
- pestphp/pest-plugin-laravel: ^2.3
- phpstan/extension-installer: ^1.3
- phpstan/phpstan-deprecation-rules: ^1.1
- phpstan/phpstan-phpunit: ^1.3
This package is not auto-updated.
Last update: 2025-06-30 02:20:01 UTC
README
Overview
Laravel Jumpstart is a modern starter kit that jumpstarts your Laravel projects with essential tools and configurations. It’s designed to save setup time, so you can focus on building features.
Frontend Stack
- Vue 3: Progressive JavaScript framework with enhanced performance.
- Pinia: Lightweight, intuitive state management for Vue 3.
- Vue Router: Seamless navigation for SPA architecture.
- VueUse: Handy Vue composition utilities for common tasks.
Installation
-
Require the package via Composer:
composer require --dev ezappslab/laravel-jumpstart
-
Run the installer:
php artisan jumpstart:install
Usage
-
Install frontend dependencies:
npm install
-
Compile assets:
npm run dev # or for production npm run build
You're now ready to build with Laravel Jumpstart!
Contribution
Contributions are welcome! Feel free to open issues or submit pull requests.
License
This package uses the MIT License.
Package Structure
Jumpstart also includes a Laravel package skeleton to speed up package development with pre-configured tools and best practices.
Core Dependencies
Production
- spatie/laravel-package-tools - Simplifies common tasks like registering config, routes, and migrations.
Development
- larastan/larastan – Static analysis with PHPStan.
- laravel/pint – Code style fixer.
- orchestra/testbench – Laravel app simulator for package testing.
- orchestra/pest-plugin-testbench – Pest plugin for Testbench.
- pestphp/pest – Simple, elegant PHP testing.
- pestphp/pest-plugin – Base plugin for custom Pest extensions.
- pestphp/pest-plugin-laravel – Laravel-specific Pest tools.
- pestphp/pest-plugin-arch – Architecture rule enforcement.
- pestphp/pest-plugin-mutate – Mutation testing for test strength.