kaiseki/php-coding-standard
Composer 安装命令:
composer require kaiseki/php-coding-standard
包简介
Kaiseki PHP Coding Standard
README 文档
README
PHP-CS-Fixer
Add the following .php-cs-fixer.dist.php file to your project's root. This will create a basic configuration with a Finder that includes everything in . and excludes vendor.:
<?php declare(strict_types=1); use Kaiseki\CodingStandard\PhpCsFixer\Config; return Config::get();
If you need a more granular directory specification, you can pass a custom Finder. You can also override rules by passing your own as the second argument:
<?php declare(strict_types=1); use Kaiseki\CodingStandard\PhpCsFixer\Config; use PhpCsFixer\Finder; $finder = Finder::create() ->in(__DIR__ . '/src'); $rules = [ // Your custom rules here ]; return Config::get($finder, $rules);
Add this script to your composer.json:
{
"scripts": {
"cs-check": "php-cs-fixer fix --dry-run",
"cs-fix": "php-cs-fixer fix --allow-risky=yes"
}
}
统计信息
- 总下载量: 275
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 38
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2023-04-11