eloquent/code-style

此软件包已被废弃,不再维护。未建议替代软件包。

PHP 的 Eloquent 代码风格定义。

2.0.1 2023-02-12 09:41 UTC

This package is auto-updated.

Last update: 2023-08-08 03:57:25 UTC


README

不再维护

此软件包不再维护。有关更多信息,请参阅此声明

Eloquent PHP 代码风格定义

安装

安装依赖项

composer require --dev friendsofphp/php-cs-fixer eloquent/code-style

添加 .php-cs-fixer.php 文件

<?php return Eloquent\CodeStyle\Config::create(__DIR__);

要自定义排除路径,访问现有的查找对象

<?php

$config = Eloquent\CodeStyle\Config::create(__DIR__);
$config->getFinder()->exclude([
    'artifacts',
    'test/fixture',
]);

return $config;

用法

vendor/bin/php-cs-fixer fix