einar-hansen/laravel-toolkit

A collection of helpful utilities and extensions to speed up your Laravel development.
18,044
Install
composer require einar-hansen/laravel-toolkit
Latest Version:v1.1.1
PHP:^8.4
License:MIT
Last Updated:Sep 13, 2026
Links: GitHub  ·  Packagist
Maintainer: einar-hansen

Laravel Toolkit

A collection of helpful utilities and extensions to speed up your Laravel development. This package gives you practical solutions for common Laravel challenges - less code, more power, and faster development for your projects.

From database shortcuts to frontend helpers, Laravel Toolkit simplifies your workflow whether you're building your first app or your hundredth.

Build better Laravel apps, faster.

PHPStan rules and configuration

Publish an opinionated PHPStan configuration in your Laravel application:

composer require --dev larastan/larastan:^3.7
php artisan toolkit:publish:phpstan
vendor/bin/phpstan analyse

The command writes phpstan.neon in your application's root. It asks for confirmation before overwriting the file. Use --backup to preserve an existing file as phpstan.neon.backup, or --force to skip confirmation:

php artisan toolkit:publish:phpstan --backup --force

The published configuration enables Toolkit’s API-message, mailable, resource, SQL, empty-catch and Sleep policies and analyses app/ at level 6 with nullable, uninitialized and dynamic property checks, plus Larastan checks for model properties, Octane compatibility, unnecessary collection calls and env() calls outside configuration files. Adjust paths and level in the published file for your application. See the PHPStan configuration reference and Larastan rules for details.

Larastan must be installed in the consuming application; this package's development dependencies are not installed transitively. If you use phpstan.neon.dist, merge the published settings into it and remove phpstan.neon, which takes precedence.

For an existing project, include vendor/einar-hansen/laravel-toolkit/extension.neon and opt in to the rules you want. All 14 custom rules, policy switches, configuration options and migration steps are documented in Reusable PHPStan rules.

Laravel Boost

This package ships resources/boost/guidelines/core.blade.php and five focused skills for configuration, data helpers, value objects, HTTP features and PHPStan. In a consuming application with Boost installed, run php artisan boost:install and select the package resources. For an existing Boost installation, run php artisan boost:update --discover to discover newly added resources.

See Boost package guidelines and package skills.

Requirements

  • Laravel v12 and above

Environment variables

ELOQUENT_STRICT_MODE=true
ELOQUENT_EAGER_LOAD_RELATIONSHIPS=false
APP_ENABLE_AGGRESSIVE_PREFETCHING=true
APP_ENFORCE_HTTPS_SCHEME=true
APP_ENABLE_IMMUTABLE_DATES=true
APP_DISABLE_DESTRUCTIVE_COMMANDS=true
APP_USE_DEFAULT_PASSWORD=true
TESTS_ENABLE_FAKE_SLEEP=true
TESTS_PREVENT_STRAY_REQUESTS=true

Related Packages

reliese/laravel

Reliese Components for Laravel Framework code generation.

3,954,390 1,705
php-tmdb/laravel

Laravel Package for TMDB ( The Movie Database ) API. Provides easy access to the...

53,312 160
laravel-ja/laravel

The Laravel Framework.

5,667 17
kavenegar/laravel

laravel 4 and 5 kavenegar integration

366,462 86
laravel/laravel

The skeleton application for the Laravel framework.

64,738,171 84,935