承接 maarsson/dev-tools 相关项目开发

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

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

maarsson/dev-tools

最新稳定版本:1.2.0

Composer 安装命令:

composer require --dev maarsson/dev-tools

包简介

Development QA toolchain bundle for my projects

README 文档

README

Development QA toolchain bundle for my projects.

This package is a Composer metapackage that installs a curated set of development and code-quality tools together with shared coding standards.

Installing this package will pull in:

  • phpmd/phpmd – PHP Mess Detector
  • squizlabs/php_codesniffer – PHP Code Sniffer
  • friendsofphp/php-cs-fixer – PHP CS Fixer
  • maarsson/coding-standard – shared coding standards and sync tooling

Requirements

  • PHP ^8.4
  • Composer

Installation

1. Package installation

Install the package as a development dependency in your project:

composer require --dev maarsson/dev-tools

2. Project configuration (required)

To ensure the coding standards are applied automatically, you must configure Composer scripts in the target project.

2.1. Add a named sync script

In your project’s composer.json add:

{
  "scripts": {
    "coding-standard:sync": [
      "vendor/bin/sync-coding-standards.php"
    ]
  }
}

2.2. Run the sync script on install and update

Extend your project’s composer.json scripts section to include:

{
  "scripts": {
    "coding-standard:sync": [
      "vendor/bin/sync-coding-standards.php"
    ],
    "post-install-cmd": [
      "@coding-standard:sync"
    ],
    "post-update-cmd": [
      "@coding-standard:sync"
    ]
  }
}

With this setup, the coding standards are applied automatically.

Usage

For more info please read the maarsson/coding-standard package's readme.

Design philosophy

  • maarsson/dev-tools defines what tools are installed
  • maarsson/coding-standard defines how rulesets are applied
  • The project decides when commands run

This separation keeps behavior explicit, predictable, and Composer-idiomatic.

License

MIT

统计信息

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

GitHub 信息

  • Stars: 0
  • Watchers: 0
  • Forks: 0
  • 开发语言: Shell

其他信息

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