m0hanraj/phpcs-config

PHPCS configuration for WordPress VIP plugins and themes

Installs: 7

Dependents: 1

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

Open Issues: 1

Type:phpcodesniffer-standard

v0.2.1 2025-09-04 09:22 UTC

This package is auto-updated.

Last update: 2025-09-04 09:29:50 UTC


README

This library contains WordPress VIP PHPCS configuration.

Architecture

Project Structure

- .circleci          # CircleCI pipeline configuration files
- .github            # GitHub configuration files
- WPDev             # WPDev phpcs rulesets

Technical Documentation

Contribution

More details on how to contribute to this package can be found in the CONTRIBUTING.md file.

Minimal requirements

  • PHP 8.2
  • WordPress 6.2

Development setup

To build the package

PHP setup

  • composer install

Installation

Composer install:

composer require --dev m0hanraj/phpcs-config

Usage

Using the ruleset

Create a phpcs.xml.dist file in your project and add the following to use WPDev ruleset:

<?xml version="1.0"?>
<ruleset name="WPDev WP PHPCS Rules">
	<rule ref="WPDev"/>
</ruleset>

Usage with Composer

Add the following to scripts section in composer.json file to run linting.

"lint": "phpcs .",
"lint:fix": "phpcbf .",

Tagging and releasing

The content schema uses Semantic Versioning semver for versioning. The package is released using GitHub Releases. The release process is automated in Circle CI build step. To create a new release, follow these steps:

  • Update the relevant files with the new version. Commit the updated files.
  • Push the changes to the main branch, by merging the associated pull request
  • Create a release targeting the main branch within GitHub.