defstudio / laravel-tools
由 def:studio 团队制作的 laravel 工具集合
v1.5.8
2023-11-14 10:17 UTC
Requires
- php: ^8.1
- barryvdh/laravel-debugbar: ^3.6
- defstudio/blade-compiler: dev-main
- defstudio/supercharged-carbon: dev-master
- illuminate/support: ^8.0|^9.0|^10.0
- spatie/laravel-ray: ^1.25
- spatie/laravel-tail: ^4.4
- wire-elements/modal: ^1.0
Requires (Dev)
- phpunit/phpunit: ^9.5
- dev-main
- 2.x-dev
- v1.5.8
- v1.5.7
- v1.5.6
- v1.5.5
- v1.5.4
- v1.5.3
- v1.5.2
- v1.5.1
- v1.5.0
- v1.4.2
- v1.4.1
- v1.4.0
- v1.3.0
- v1.2.0
- v1.1.7
- v1.1.6
- v1.1.5
- v1.1.4
- v1.1.3
- v1.1.2
- v1.1.1
- v1.1.0
- v1.0.0
- v0.6.6
- v0.6.5
- v0.6.4
- v0.6.3
- v0.6.2
- v0.6.1
- v0.6.0
- v0.5.0
- v0.4.9
- v0.4.8
- v0.4.7
- v0.4.6
- v0.4.5
- v0.4.4
- v0.4.3
- v0.4.2
- v0.4.1
- v0.4.0
- v0.3.7
- v0.3.6
- v0.3.5
- v0.3.4
- v0.3.3
- v0.3.2
- v0.3.1
- v0.3.0
- v0.2.2
- v0.2.1
- v0.2.0
- v0.1.8
- v0.1.7
- v0.1.6
- v0.1.5
- v0.1.4
- v0.1.3
- v0.1.2
- v0.1.1
- v0.1.0
- v0.0.24
- v0.0.23
- v0.0.22
- v0.0.21
- v0.0.20
- v0.0.19
- v0.0.18
- v0.0.17
- v0.0.16
- v0.0.15
- v0.0.14
- v0.0.13
- v0.0.12
- v0.0.11
- v0.0.10
- v0.0.9
- v0.0.8
- v0.0.7
- v0.0.6
- v0.0.5
- v0.0.4
- v0.0.3
- v0.0.2
- v0.0.1
- dev-revert-6-ck-editor
- dev-nicola-posa-patch-1
This package is auto-updated.
Last update: 2024-09-10 11:40:31 UTC
README
安装
您可以通过 Composer 安装此包
composer require defstudio/laravel-tools
设置
发布资源
[待办事项]
开发依赖安装
此外,您还可以为 laravel 项目安装我们推荐的开发依赖
composer require --dev defstudio/laravel-dev-dependencies -W
并在 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"
]