brotkrueml/coding-standards

Coding standards for the brotkrueml projects

Maintainers

👁 brotkrueml

Package info

github.com/brotkrueml/coding-standards

pkg:composer/brotkrueml/coding-standards

Statistics

Installs: 33 725

Dependents: 31

Suggesters: 0

Stars: 0

Open Issues: 0

v6.3.1 2026-01-05 17:41 UTC

Requires

Requires (Dev)

Suggests

None

Provides

None

Conflicts

None

Replaces

None

GPL-2.0-or-later 20b45456fc331b0b2680b57d8fe3237ae2e5793e

  • Chris Müller

This package is auto-updated.

Last update: 2026-06-05 18:31:58 UTC


README

Coding standards for the brotkrueml projects based on symplify/easy-coding-standard.

Installation

Install the package via Composer:

composer req brotkrueml/coding-standards --dev

Usage

Just import the common rule set and add your additional configuration (like paths, skip, etc.), for example:

<?php

declare (strict_types=1);

use Symplify\EasyCodingStandard\Config\ECSConfig;

return ECSConfig::configure()
 ->withSets([
 __DIR__ . '/vendor/brotkrueml/coding-standards/config/common.php',
 ])
 ->withParallel()
 ->withPaths([
 __DIR__ . '/src',
 __DIR__ . '/tests',
 // ...
 ])

 // ... additional configuration ...

 ;
};