承接 buckhamduffy/coding-standards 相关项目开发

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

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

buckhamduffy/coding-standards

最新稳定版本:v7.0.3

Composer 安装命令:

composer require buckhamduffy/coding-standards

包简介

README 文档

README

Usage

Run composer require --dev buckhamduffy/coding-standards

ECS Example

ecs.php

<?php

declare(strict_types=1);

use Symplify\EasyCodingStandard\Configuration\ECSConfigBuilder;
use PHP_CodeSniffer\Standards\Generic\Sniffs\CodeAnalysis\EmptyStatementSniff;

/** @var ECSConfigBuilder $config */
$config = require __DIR__ . '/vendor/buckhamduffy/coding-standards/ecs.php';

$config
    ->withParallel()
    ->withSpacing(indentation: Option::INDENTATION_SPACES, lineEnding: "\n");

return $config;
Rector Example

rector.php

<?php

use Rector\ValueObject\PhpVersion;
use RectorLaravel\Set\LaravelLevelSetList;
use Rector\Configuration\RectorConfigBuilder;

/** @var RectorConfigBuilder $config */
$config = require __DIR__ . '/vendor/buckhamduffy/coding-standards/rector.php';

$config
    ->withSets([LaravelLevelSetList::UP_TO_LARAVEL_110])
    ->withPhpVersion(PhpVersion::PHP_83)
    ->withPhpSets(php83: true);

return $config;
PHPStan

phpstan.neon

includes:
    - ./vendor/buckhamduffy/coding-standards/extension.neon
CaptainHook

CaptainHook can be used to install custom made commit hooks

composer require --dev captainhook/hook-installer
cp vendor/buckhamduffy/coding-standards/captainhook.json captainhook.json

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: Unknown
  • 更新时间: 2022-07-15