yakamara/php-cs-fixer-config

php-cs-fixer config for Yakamara projects

Maintainers

Package info

github.com/yakamara/php-cs-fixer-config

pkg:composer/yakamara/php-cs-fixer-config

Statistics

Installs: 4 038

Dependents: 0

Suggesters: 0

Stars: 6

Open Issues: 0

dev-main 2026-01-27 22:13 UTC

This package is auto-updated.

Last update: 2026-02-27 22:19:26 UTC


README

Installation

composer require --dev yakamara/php-cs-fixer-config

Example .php-cs-fixer.dist.php:

<?php

$finder = (new PhpCsFixer\Finder())
    ->in(__DIR__)
;

return Yakamara\PhpCsFixerConfig\Config::php81()
    ->setFinder($finder)
;