承接 contao/easy-coding-standard 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

contao/easy-coding-standard

最新稳定版本:6.13.8

Composer 安装命令:

composer require contao/easy-coding-standard

包简介

EasyCodingStandard configurations for Contao

README 文档

README

This package includes the EasyCodingStandard configuration for Contao.

Installation

Add the package to your Contao installation via Composer:

composer require contao/easy-coding-standard --dev

Usage

Create a file named ecs.php in the root directory of your project.

<?php

declare(strict_types=1);

use Contao\EasyCodingStandard\Set\SetList;
use Symplify\EasyCodingStandard\Config\ECSConfig;

return ECSConfig::configure()
    ->withSets([SetList::CONTAO])
    // Adjust the configuration according to your needs.
;

Then run the script like this:

vendor/bin/ecs check

What's inside?

The package contains the following custom fixers:

Class Description
AssertEqualsFixer Replaces asserEquals() with assertSame() in unit tests unless the method is used to compare two objects.
CaseCommentIndentationFixer Fixes the comment indentation before a case statement.
ChainedMethodBlockFixer Adds an empty line after a block of chained method calls.
CommentLengthFixer Adjusts the length of comments regardless of their indentation so that each line is about 80 characters long.
ExpectsWithCallbackFixer Adjusts the indentation of $this->callback() calls inside the with() method of a unit test.
FindByPkFixer Replaces findByPk() calls with findById().
FunctionCallWithMultilineArrayFixer Fixes the indentation of function calls with multi-line array arguments.
InlinePhpdocCommentFixer Ensures that inline phpDoc comments are not converted to regular comments.
IsArrayNotEmptyFixer Fixes the order of isset() and empty() calls in conjunction with is_array() checks.
MockMethodChainingIndentationFixer Fixes the indentation of chained mock methods.
MultiLineIfIndentationFixer Fixes the indentation of multi-line if statements.
MultiLineLambdaFunctionArgumentsFixer Fixes the indentation of multi-line lambda function arguments.
NoExpectsThisAnyFixer Removes the explicit any() assertion in unit tests.
NoLineBreakBetweenMethodArgumentsFixer Fixes the indentation of method declarations.
NoSemicolonAfterShortEchoTagFixer Removes the semicolon after short echo tag instructions.
SingleLineConfigureCommandFixer Fixes the indentation of Symfony command arguments and options.
TypeHintOrderFixer Fixes the type hint order in method declarations.

The package contains the following custom sniffs:

Class Description
ContaoFrameworkClassAliasSniff Prevents using aliased Contao classes instead of their originals.
SetDefinitionCommandSniff Prevents using the setDefinition() method in Symfony commands.
UseSprintfInExceptionsSniff Prevents using string interpolation in exception messages.

License

Contao is licensed under the terms of the LGPLv3.

Getting support

Visit the support page to learn about the available support options.

统计信息

  • 总下载量: 195.22k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 12
  • 点击次数: 4
  • 依赖项目数: 260
  • 推荐数: 0

GitHub 信息

  • Stars: 12
  • Watchers: 6
  • Forks: 9
  • 开发语言: PHP

其他信息

  • 授权协议: LGPL-3.0-or-later
  • 更新时间: 2020-01-05