yakamara/php-cs-fixer-config

php-cs-fixer config for Yakamara projects

dev-main 2024-03-13 11:08 UTC

This package is auto-updated.

Last update: 2024-04-13 11:17:25 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)
;