# VIP-Coding-Standards **Repository Path**: mirrors_Automattic/VIP-Coding-Standards ## Basic Information - **Project Name**: VIP-Coding-Standards - **Description**: PHP_CodeSniffer ruleset to enforce WordPress VIP coding standards. - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: develop - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-08 - **Last Updated**: 2026-09-12 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # VIP Coding Standards This project contains [PHP_CodeSniffer (PHPCS) sniffs and rulesets](https://github.com/PHPCSStandards/PHP_CodeSniffer) to validate code developed for [WordPress VIP](https://wpvip.com/). This project contains two rulesets: - `WordPressVIPMinimum` - for use with projects on the (older) WordPress.com VIP platform. - `WordPress-VIP-Go` - for use with projects on the (newer) VIP Go platform. These rulesets contain only the rules which are considered to be [errors](https://docs.wpvip.com/php_codesniffer/errors/) and [warnings](https://docs.wpvip.com/php_codesniffer/warnings/) according to the WordPress VIP documentation. The rulesets use rules from the [WordPress Coding Standards](https://github.com/WordPress/WordPress-Coding-Standards) (WPCS) project, as well as the [VariableAnalysis](https://github.com/sirbrillig/phpcs-variable-analysis) standard. [Learn](https://docs.wpvip.com/vip-code-analysis-bot/phpcs-report/) about why violations are flagged as errors vs warnings and what the levels mean. ## Minimal requirements * PHP 7.4+ * [PHPCS 3.13.5+](https://github.com/PHPCSStandards/PHP_CodeSniffer/releases) * [PHPCSUtils 1.2.3+](https://github.com/PHPCSStandards/PHPCSUtils) * [PHPCSExtra 1.5.1+](https://github.com/PHPCSStandards/PHPCSExtra) * [WPCS 3.4.1+](https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards/releases) * [VariableAnalysis 2.13.0+](https://github.com/sirbrillig/phpcs-variable-analysis/releases) ## Installation [Composer](https://getcomposer.org/) will install the latest compatible versions of PHPCS, PHPCSUtils, PHPCSExtra, WPCS and VariableAnalysis and register the external standards with PHP_CodeSniffer. Please refer to the [installation instructions for installing PHP_CodeSniffer for WordPress VIP](https://docs.wpvip.com/how-tos/code-review/php_codesniffer/) for more details. As of VIPCS version 2.3.0, there is no need to `require` the [PHP_CodeSniffer Standards Composer Installer Plugin](https://github.com/PHPCSStandards/composer-installer) anymore as it is now a requirement of VIPCS itself. Permission to run the plugin will still need to be granted though when using Composer 2.2 or higher. ### Composer Project-based Installation To install the VIP Coding Standards, run the following from the root of your project: ```bash composer config allow-plugins.dealerdirect/phpcodesniffer-composer-installer true composer require --dev automattic/vipwpcs ``` ### Composer Global Installation Alternatively, it can be installed standard globally for use across multiple projects: ```bash composer global config allow-plugins.dealerdirect/phpcodesniffer-composer-installer true composer global require --dev automattic/vipwpcs ``` ## Contribution Please see [CONTRIBUTION.md](.github/CONTRIBUTING.md). ## License Licensed under [GPL-2.0-or-later](LICENSE.md).