johnatas-x/grumphp-phpmd3

There is no license information available for the latest version (2.22.1) of this package.

GrumPHP extension based on guvra's work to support PHPMD 3.x

Maintainers

Package info

github.com/johnatas-x/grumphp-phpmd3

pkg:composer/johnatas-x/grumphp-phpmd3

Statistics

Installs: 10

Dependents: 1

Suggesters: 0

Stars: 0

Open Issues: 0

2.22.1 2026-06-27 14:48 UTC

This package is auto-updated.

Last update: 2026-06-27 14:57:55 UTC


README

This repository allows you to use guvra's work to add support for PHPMD 3.x in GrumPHP.

For more context, see the related issue phpro/grumphp#1209 and the associated pull request phpro/grumphp#1210.

Installation

Install it using composer:

composer require --dev johnatas-x/grumphp-phpmd3

Usage

  1. Add the extension in your grumphp.yml file:
extensions:
  - GrumphpPhpMd3\ExtensionLoader
  1. Add phpmd3 to the tasks:
tasks:
  phpmd3:
    whitelist_patterns: []
    exclude: []
    report_format: text
    ruleset: ['phpmd.xml.dist']
    triggered_by: ['php']