yakamara/php-cs-fixer-config

php-cs-fixer config for Yakamara projects

Installs: 3 632

Dependents: 0

Suggesters: 0

Security: 0

Stars: 6

Watchers: 1

Forks: 0

Open Issues: 0

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

dev-main 2025-09-29 09:05 UTC

This package is auto-updated.

Last update: 2025-09-29 09:05:33 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)
;