defstudio/laravel-dev-tools

开发要求 def:studio laravel 项目

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

This package is auto-updated.

Last update: 2024-09-18 14:19:12 UTC


README

将以下脚本添加到 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"
]