mikelooper / code-style
PHP 代码风格规则
0.0.2
2023-11-27 18:43 UTC
Requires
README
- 安装依赖项
composer require --dev mikelooper/coding-style
- 将其添加到您的
ecs.php
文件中use Shared\Infrastructure\CodingStyle; use Symplify\EasyCodingStandard\Config\ECSConfig; return function (ECSConfig $ecsConfig): void { $ecsConfig->paths([__DIR__ . '/src',]); $ecsConfig->sets([CodingStyle::DEFAULT]); // Or this if you prefer to have the code aligned // $ecsConfig->sets([CodingStyle::ALIGNED]); };
- 执行它
./vendor/bin/ecs check