yakamara/php-cs-fixer-config

php-cs-fixer config for Yakamara projects

dev-main 2025-02-18 14:14 UTC

This package is auto-updated.

Last update: 2025-02-18 14:14:22 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)
;