nerdman/php-cs-fixer-config

Nerdman项目的默认PHP-CS-Fixer配置

1.2.3 2024-06-06 15:46 UTC

This package is auto-updated.

Last update: 2024-09-06 16:35:30 UTC


README

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

请在您的PHP-CS-Config文件中添加以下内容

<?php
use Nerdman\CodeStyle\Config\Php81;
use PhpCsFixer\Finder;

$finder = Finder::create()
    ->in(__DIR__)
    ->exclude('var')
    ->notContains('/@nolint/');

return new Php81($finder, '.php-cs.cache');