contao/easy-coding-standard

EasyCodingStandard configurations for Contao

6.3.0 2023-06-01 08:02 UTC

README

This package includes the EasyCodingStandard configuration for Contao.

Installation

You can install the package with Composer:

composer require contao/easy-coding-standard

Usage

Create a file named ecs.php in the root directory of your project.

<?php

declare(strict_types=1);

use Symplify\EasyCodingStandard\Config\ECSConfig;

return static function (ECSConfig $ecsConfig): void {
    $ecsConfig->sets([__DIR__.'/vendor/contao/easy-coding-standard/config/contao.php']);

    // Adjust the configuration according to your needs.
};

Then run the script like this:

vendor/bin/ecs check src tests

License

Contao is licensed under the terms of the LGPLv3.

Getting support

Visit the support page to learn about the available support options.