slowprog/get8-coding-standard

CodeSniffer ruleset for the get8 coding standard

Installs: 655

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 100

Type:coding-standard

1.0.0 2016-09-10 13:33 UTC

This package is auto-updated.

Last update: 2024-04-05 18:07:19 UTC


README

This is a custom coding standard, which is used by all Get8's 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 slowprog/get8-coding-standard:~1.0
    
  3. Add the coding standard to the PHP_CodeSniffer install path

     vendor/bin/phpcs --config-set installed_paths vendor/slowprog/get8-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/slowprog/get8-coding-standard.git
    
  3. Add the coding standard to the PHP_CodeSniffer install path

     phpcs --config-set installed_paths /path/to/get8-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