定制 mito/coding-standards 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

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

mito/coding-standards

最新稳定版本:3.0.1

Composer 安装命令:

composer require mito/coding-standards

包简介

Mito coding standards

README 文档

README

This repository contains Mito's coding standards for PHP based applications.

Code coverage

Getting the code

You can get code style definition using one of the following methods.

  • Clone hellowearemito/php-coding-standards repository:
$ git clone git://github.com/hellowearemito/php-coding-standards.git
$ composer require mito/coding-standards:"^3.0"

PHP_Codesniffer

This repository contains five phpcs standards:

  • Application: for normal class files.
  • Views: for view files, requires using curly braces for control structures.
  • ViewsAlternate: for view files, requires using alternate syntax for control structures.
  • ViewsMixed: for view files, allows both curly braces and alternate syntax.
  • Others: for other files, such as configuration files and migration classes.

These standards are based on PSR-12, with some additions and improvements.

The Views standards disable some rules that cause problems when mixing php with html, and therefore cannot fully check view files and cannot fix all problems in them, so be careful when using phpcbf with view files.

For a full description of the rules, see docs/rules.md.

Using the standards

After CodeSniffer is installed, you can launch it with a custom standard using the following syntax:

$ ./vendor/bin/phpcs --extensions=php --standard=vendor/mito/coding-standards/Application .

To automatically fix most issues, use phpcbf:

$ ./vendor/bin/phpcbf --extensions=php --standard=vendor/mito/coding-standards/Application .

Warning: always check phpcbf's output and keep backups. If it breaks your code, you get to keep both pieces.

You should also run a syntax check using php -l before running phpcbf, because some sniffs assume the code is syntactically valid, and may mangle it if it is not.

If you're using PhpStorm you can configure it to use CodeSniffer using Settings → PHP → Code Sniffer. The standard can be specified at Inspections → PHP → PHP Code Sniffer validation.

Note that this will check all your files with a single standard, but you should use different standards for different types of files. These standards were designed for use with gulp-phpcs and gulp-phpcbf, so instead of using exclusion patterns in the ruleset.xml, they rely on the gulp task selecting the appropriate standard for a file.

You can write your own ruleset.xml that extends from the Application standard and contains appropriate exclusion patterns (check the Others and Views ruleset.xml files for what rules to exclude).

Useful links

Contributing

See CONTRIBUTING.md for information.

统计信息

  • 总下载量: 5.8k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 1
  • 点击次数: 1
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 1
  • Watchers: 0
  • Forks: 3
  • 开发语言: PHP

其他信息

  • 授权协议: BSD-3-Clause
  • 更新时间: 2022-09-05