yakamara/php-cs-fixer-config

yakamara项目使用的php-cs-fixer配置

dev-main 2024-05-16 09:56 UTC

This package is auto-updated.

Last update: 2024-09-16 10:47:51 UTC


README

安装

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

示例 .php-cs-fixer.dist.php

<?php

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

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