Skip to content

evasio/ecs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ECS

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,
	]);
};