Skip to content
This repository has been archived by the owner on Dec 17, 2022. It is now read-only.

Latest commit

 

History

History
27 lines (21 loc) · 747 Bytes

README.md

File metadata and controls

27 lines (21 loc) · 747 Bytes

Coding Standard

CI

Coding standard configuration used by me.

Installation & usage

  1. Install this package:
$ composer require --dev benjaminmal/coding-standard
  1. Import the configuration file in your ecs.php:
$config->import('vendor/benjaminmal/coding-standard/ecs.php');

Example config (ecs.php)

use Symplify\EasyCodingStandard\Config\ECSConfig;
   
return static function (ECSConfig $config): void {
    $config->import('vendor/benjaminmal/coding-standard/ecs.php');
};