evasio/ecs

Set of Evasio rules for PHP_CodeSniffer and PHP CS Fixer.

v1.0.0 2023-12-12 23:18 UTC

This package is not auto-updated.

Last update: 2024-04-17 23:33:04 UTC


README

Easy Coding Standard config for Evasio. Set of rules for PHP_CodeSniffer and PHP CS Fixer.

Install

composer require evasio/ecs --dev

Usage

<?php

declare(strict_types=1);

+use Evasio\ECS\SetList;
use Symplify\EasyCodingStandard\Config\ECSConfig;

return function (ECSConfig $ecsConfig): void {
	$ecsConfig->sets([
+		SetList::EVASIO,
	]);
};