defstudio/laravel-dev-tools

Dev requirements def:studio laravel projects

Installs: 6 311

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 3

Forks: 0

Open Issues: 1

pkg:composer/defstudio/laravel-dev-tools

dev-main 2022-03-02 15:32 UTC

This package is auto-updated.

Last update: 2025-09-18 16:32:19 UTC


README

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=0",
"test": "php ./vendor/bin/pest --colors=always",
"test:all": [
    "@test:lint",
    "@test:types",
    "@test"
]