stedekay/enterio-coding-standard

CodeSniffer ruleset for the enterio coding standard

v0.1 2016-03-21 13:42 UTC

This package is auto-updated.

Last update: 2024-03-13 19:56:30 UTC


README

Build Status

Enterio PHP CodeSniffer Coding Standard

This is a custom coding standard, which is used by all enterio projects.

Installation

Composer

This standard can be installed with the Composer dependency manager.

  1. Install Composer

  2. Install the coding standard as a dependency of your project

     composer require --dev stedekay/enterio-coding-standard:~1.0
    
  3. Add the coding standard to the PHP_CodeSniffer install path

     vendor/bin/phpcs --config-set installed_paths vendor/stedekay/enterio-coding-standard
    
  4. Check the installed coding standards for "Symfony2"

     vendor/bin/phpcs -i
    
  5. Done!

     vendor/bin/phpcs /path/to/code
    

### Stand-alone

  1. Install PHP_CodeSniffer

  2. Checkout this repository

     git clone git://github.com/stedekay/enterio-coding-standard.git
    
  3. Add the coding standard to the PHP_CodeSniffer install path

     phpcs --config-set installed_paths /path/to/enterio-coding-standard
    

    Or copy/symlink this repository's "Symfony2"-folder inside the phpcs Standards directory

  4. Check the installed coding standards for "Symfony2"

     phpcs -i
    
  5. Done!

     phpcs /path/to/code