定制 unleashedtech/php-coding-standard 二次开发

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

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

unleashedtech/php-coding-standard

Composer 安装命令:

composer require unleashedtech/php-coding-standard

包简介

CodeSniffer ruleset used by Unleashed Technologies

README 文档

README

Latest Version Total Downloads Build Status Software License

A PHP coding standard for Unleashed Technologies, originally based on doctrine/coding-standard.

Overview

This coding standard is based on PSR-1 and PSR-2, with some noticeable exceptions/differences/extensions based on best-practices adopted by Symfony, Doctrine, and the wider community:

  • Keep the nesting of control structures per method as small as possible
  • Add spaces around a concatenation operator $foo = 'Hello ' . 'World!';
  • Add spaces between assignment, control and return statements
  • Add spaces after the colon in return type declaration function (): void {}
  • Add spaces after a type cast $foo = (int) '12345';
  • Use single-quotes for enclosing strings
  • Always use strict comparisons
  • Always add declare(strict_types=1) at the beginning of a file
  • Always add native types where possible
  • Omit phpDoc for parameters/returns with native types, unless adding description
  • Don't use @author, @since and similar annotations that duplicate Git information
  • Use parentheses when creating new instances that do not require arguments $foo = new Foo()
  • Use Null Coalesce Operator $foo = $bar ?? $baz
  • Use Null Safe Object Operator $foo = $object?->property
  • Prefer early exit over nesting conditions or using else
  • Always use fully-qualified global functions (without needing use function statements)
  • Forbids the use of \DateTime

For full reference of enforcements, go through src/Unleashed/ruleset.xml where each sniff is briefly described.

Installation

You can install the Unleashed Coding Standard as a Composer dependency in your project:

composer require --dev unleashedtech/php-coding-standard

Then you can use it like this:

vendor/bin/phpcs --standard=Unleashed /path/to/some/files.php

You can also use phpcbp to automatically find and fix any violations:

vendor/bin/phpcbf --standard=Unleashed /path/to/some/files.php

Project-Level Ruleset

To enable the Unleashed Coding Standard for your project, create a phpcs.xml.dist file with the following content:

<?xml version="1.0"?>
<ruleset>
    <arg name="basepath" value="."/>
    <arg name="extensions" value="php"/>
    <arg name="parallel" value="80"/>
    <arg name="cache" value=".phpcs-cache"/>
    <arg name="colors"/>

    <!-- Ignore warnings, show progress of the run and show sniff names -->
    <arg value="nps"/>

    <!-- Directories to be checked -->
    <file>src</file>
    <file>tests</file>

    <!-- Include full Unleashed Coding Standard -->
    <rule ref="Unleashed"/>
</ruleset>

This will enable the full Unleashed Coding Standard with all rules included with their defaults. From now on you can just run vendor/bin/phpcs and vendor/bin/phpcbf without any arguments.

Don't forget to add .phpcs-cache and phpcs.xml (without .dist suffix) to your .gitignore. The first ignored file is a cache used by PHP CodeSniffer to speed things up, the second one allows any developer to adjust configuration locally without touching the versioned file.

For further reading about the CodeSniffer configuration, please refer to the configuration format overview and the list of configuration options.

unleashedtech/php-coding-standard 适用场景与选型建议

unleashedtech/php-coding-standard 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 218.89k 次下载、GitHub Stars 达 0, 最近一次更新时间为 2019 年 03 月 07 日, 在 PHP 生态内属于活跃度较高的组件。

它主要适用于以下技术方向: 「phpcs」 「Coding Standard」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。

我们在过去多个企业项目中使用过 unleashedtech/php-coding-standard 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 unleashedtech/php-coding-standard 我们能提供哪些服务?
定制开发 / 二次开发

基于 unleashedtech/php-coding-standard 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: MIT
  • 更新时间: 2019-03-07