PHPackages                             developion/coding-standards - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [PSR &amp; Standards](/categories/psr-standards)
4. /
5. developion/coding-standards

ActiveLibrary[PSR &amp; Standards](/categories/psr-standards)

developion/coding-standards
===========================

1.1.4(2mo ago)05363MITPHP

Since Mar 17Pushed 2mo agoCompare

[ Source](https://github.com/Developion/coding-standards)[ Packagist](https://packagist.org/packages/developion/coding-standards)[ RSS](/packages/developion-coding-standards/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (8)Versions (9)Used By (3)

PHP Coding Standards in Developion / ContentReactor projects
============================================================

[](#php-coding-standards-in-developion--contentreactor-projects)

Based on PSR12, a few targeted tweaks and fixers are aimed to general consistency of the code.

### Requirements

[](#requirements)

- PHP 8.2+

### Installation

[](#installation)

```
composer require --dev developion/coding-standards
```

#### ECS

[](#ecs)

Add `ecs.php` to the root of your project, and set the content to:

```
use Developion\CodingStandards\SetList;

$config = require SetList::DEVELOPION;

return $config->withPaths([
		__DIR__ . '',
		__FILE__,
	]);
```

The line `__DIR__ . ''` deserves special attention, as it needs to be configured to point to the code of the project that needs to be checked. If necessary, it can be duplicated as many times as necessary.

#### PHP CS Fixer

[](#php-cs-fixer)

Add `.php-cs-fixer.php` to the root of your project, and set the content to:

```
use Developion\CodingStandards\SetList;
use PhpCsFixer\Finder;

$finder = (new Finder())
	->in([
		__DIR__ . '',
	])
	->ignoreDotFiles(false)
	->ignoreVCSIgnored(true)
	->exclude([
		__DIR__ . '/vendor',
	])
;

$config = require SetList::PHP_CS_FIXER;

return $config($finder);
```

Adjust the `` to your code accordingly.

TODO: add VS Code config

###  Health Score

42

—

FairBetter than 90% of packages

Maintenance88

Actively maintained with recent releases

Popularity15

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity46

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~104 days

Recently: every ~182 days

Total

8

Last Release

61d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/7c92d7a76b15b7264e7bf5d32b0354fe8ce5bb3de6d6a749bdd1aaa61a4bbefa?d=identicon)[developion](/maintainers/developion)

---

Top Contributors

[![marcusgaius](https://avatars.githubusercontent.com/u/39379513?v=4)](https://github.com/marcusgaius "marcusgaius (1 commits)")

###  Code Quality

TestsPest

Code StylePHP CS Fixer

Type Coverage Yes

### Embed Badge

![Health badge](/badges/developion-coding-standards/health.svg)

```
[![Health](https://phpackages.com/badges/developion-coding-standards/health.svg)](https://phpackages.com/packages/developion-coding-standards)
```

###  Alternatives

[redaxo/php-cs-fixer-config

php-cs-fixer config for REDAXO

1091.3k8](/packages/redaxo-php-cs-fixer-config)[mollie/php-coding-standards

Contains PHP coding standards like rules for PHP-CS-Fixer that serves for purpose of standardization.

1863.1k](/packages/mollie-php-coding-standards)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
