-
(Optional) Add prefixed ECS CLI tool into your composer requirements
(if you're not a fan of resolving conflicts with enormous dependencies
list of simplify/easy-coding-standard
).
composer require --dev symplify/easy-coding-standard-prefixed
-
Link prezly/code-style repo as composer dependency
composer require prezly/code-style:~3.0
-
Include the provided configuration into your project.
Simply create an ecs.php file in your project root
and include the ecs.php provided by this package into it.
<?php
return require __DIR__ . '/vendor/prezly/code-style/ecs.php';
-
If you need to extend or override the stock configuration,
you can of course do it by adding code on top of it:
<?php
declare(strict_types=1);
use PhpCsFixer\Fixer\Operator\BinaryOperatorSpacesFixer;
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
return static function (ContainerConfigurator $config): void {
(require __DIR__ . '/vendor/prezly/code-style/ecs.php')($config);
$services = $config->services();
$services->set(BinaryOperatorSpacesFixer::class)->call('configure', [
[
'operators' => [
'=>' => 'align',
],
],
]);
};
-
Run checks (you can also configure your CI to run this for you on every push):
vendor/bin/ecs check src/
-
Fix problems:
vendor/bin/ecs check src/ --fix