承接 unleashedtech/php-coding-standard 相关项目开发

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

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

unleashedtech/php-coding-standard

最新稳定版本:v3.1.1

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.

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: MIT
  • 更新时间: 2026-01-04

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固