defstudio / laravel-tools
A collection of laravel tools made by def:studio team
v2.0.0
2026-01-30 14:31 UTC
Requires
- php: ^8.2
- barryvdh/laravel-debugbar: ^3.6
- defstudio/supercharged-carbon: dev-master
- illuminate/support: ^11.0|^12.0
- spatie/laravel-ray: ^1.25
- spatie/laravel-tail: ^4.4
- wire-elements/modal: ^3.0
Requires (Dev)
- phpunit/phpunit: ^9.5
This package is auto-updated.
Last update: 2026-05-27 08:40:20 UTC
README
Installation
You can install this package via Composer:
composer require defstudio/laravel-tools
Setup
Publishing Assets
[TODO]
Dev dependencies installation
additionally, you can install our opinionated dev dependencies for laravel projects
composer require --dev defstudio/laravel-dev-dependencies -W
and add the following scripts to composer.json
"php-cs-fixer": "php-cs-fixer fix -v --config=./.php-cs-fixer.php",
"lint": "@php-cs-fixer",
"test:lint": "@php-cs-fixer --dry-run",
"test:types": "php ./vendor/bin/phpstan analyse --ansi --memory-limit=-1",
"test:mutation": "./vendor/bin/infection --test-framework=pest --show-mutations",
"test": "php ./vendor/bin/pest --colors=always --parallel",
"update:snapshots": "php ./vendor/bin/pest --colors=always -d --update-snapshots",
"coverage": "php ./vendor/bin/pest --coverage",
"test:all": [
"@test:lint",
"@test:types",
"@test"
]