2017 © Pedro Peláez
 

library php_codesniffer

PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.

image

squizlabs/php_codesniffer

PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.

  • Friday, July 27, 2018
  • by gsherwood
  • Repository
  • 204 Watchers
  • 5167 Stars
  • 28,052,416 Installations
  • PHP
  • 11510 Dependents
  • 24 Suggesters
  • 925 Forks
  • 138 Open issues
  • 64 Versions
  • 8 % Grown

The README.md

[!WARNING] This repository has been abandoned. Its successor is PHPCSStandards/PHP_CodeSniffer, (*1)

See issue #3932 for more information., (*2)

About

PHP_CodeSniffer is a set of two PHP scripts; the main phpcs script that tokenizes PHP, JavaScript and CSS files to detect violations of a defined coding standard, and a second phpcbf script to automatically correct coding standard violations. PHP_CodeSniffer is an essential development tool that ensures your code remains clean and consistent., (*3)

Build Status Build Status Code consistency Join the chat at https://gitter.im/squizlabs/PHP_CodeSniffer, (*4)

Requirements

PHP_CodeSniffer requires PHP version 5.4.0 or greater, although individual sniffs may have additional requirements such as external applications and scripts. See the Configuration Options manual page for a list of these requirements., (*5)

If you're using PHP_CodeSniffer as part of a team, or you're running it on a CI server, you may want to configure your project's settings using a configuration file., (*6)

Installation

The easiest way to get started with PHP_CodeSniffer is to download the Phar files for each of the commands:, (*7)

# Download using curl
curl -OL https://squizlabs.github.io/PHP_CodeSniffer/phpcs.phar
curl -OL https://squizlabs.github.io/PHP_CodeSniffer/phpcbf.phar

# Or download using wget
wget https://squizlabs.github.io/PHP_CodeSniffer/phpcs.phar
wget https://squizlabs.github.io/PHP_CodeSniffer/phpcbf.phar

# Then test the downloaded PHARs
php phpcs.phar -h
php phpcbf.phar -h

Composer

If you use Composer, you can install PHP_CodeSniffer system-wide with the following command:, (*8)

composer global require "squizlabs/php_codesniffer=*"

Make sure you have the composer bin dir in your PATH. The default value is ~/.composer/vendor/bin/, but you can check the value that you need to use by running composer global config bin-dir --absolute., (*9)

Or alternatively, include a dependency for squizlabs/php_codesniffer in your composer.json file. For example:, (*10)

{
    "require-dev": {
        "squizlabs/php_codesniffer": "3.*"
    }
}

You will then be able to run PHP_CodeSniffer from the vendor bin directory:, (*11)

./vendor/bin/phpcs -h
./vendor/bin/phpcbf -h

Phive

If you use Phive, you can install PHP_CodeSniffer as a project tool using the following commands:, (*12)

phive install phpcs
phive install phpcbf

You will then be able to run PHP_CodeSniffer from the tools directory:, (*13)

./tools/phpcs -h
./tools/phpcbf -h

PEAR

If you use PEAR, you can install PHP_CodeSniffer using the PEAR installer. This will make the phpcs and phpcbf commands immediately available for use. To install PHP_CodeSniffer using the PEAR installer, first ensure you have installed PEAR and then run the following command:, (*14)

pear install PHP_CodeSniffer

Git Clone

You can also download the PHP_CodeSniffer source and run the phpcs and phpcbf commands directly from the Git clone:, (*15)

git clone https://github.com/squizlabs/PHP_CodeSniffer.git
cd PHP_CodeSniffer
php bin/phpcs -h
php bin/phpcbf -h

Getting Started

The default coding standard used by PHP_CodeSniffer is the PEAR coding standard. To check a file against the PEAR coding standard, simply specify the file's location:, (*16)

phpcs /path/to/code/myfile.php

Or if you wish to check an entire directory you can specify the directory location instead of a file., (*17)

phpcs /path/to/code-directory

If you wish to check your code against the PSR-12 coding standard, use the --standard command line argument:, (*18)

phpcs --standard=PSR12 /path/to/code-directory

If PHP_CodeSniffer finds any coding standard errors, a report will be shown after running the command., (*19)

Full usage information and example reports are available on the usage page., (*20)

Documentation

The documentation for PHP_CodeSniffer is available on the Github wiki., (*21)

Issues

Bug reports and feature requests can be submitted on the Github Issue Tracker., (*22)

Contributing

See CONTRIBUTING.md for information., (*23)

Versioning

PHP_CodeSniffer uses a MAJOR.MINOR.PATCH version number format., (*24)

The MAJOR version is incremented when: - backwards-incompatible changes are made to how the phpcs or phpcbf commands are used, or - backwards-incompatible changes are made to the ruleset.xml format, or - backwards-incompatible changes are made to the API used by sniff developers, or - custom PHP_CodeSniffer token types are removed, or - existing sniffs are removed from PHP_CodeSniffer entirely, (*25)

The MINOR version is incremented when: - new backwards-compatible features are added to the phpcs and phpcbf commands, or - backwards-compatible changes are made to the ruleset.xml format, or - backwards-compatible changes are made to the API used by sniff developers, or - new sniffs are added to an included standard, or - existing sniffs are removed from an included standard, (*26)

NOTE: Backwards-compatible changes to the API used by sniff developers will allow an existing sniff to continue running without producing fatal errors but may not result in the sniff reporting the same errors as it did previously without changes being required., (*27)

The PATCH version is incremented when: - backwards-compatible bug fixes are made, (*28)

NOTE: As PHP_CodeSniffer exists to report and fix issues, most bugs are the result of coding standard errors being incorrectly reported or coding standard errors not being reported when they should be. This means that the messages produced by PHP_CodeSniffer, and the fixes it makes, are likely to be different between PATCH versions., (*29)

The Versions

27/07 2018

dev-master

9999999-dev http://www.squizlabs.com/php-codesniffer

PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.

  Sources   Download

BSD-3-Clause

The Requires

  • ext-simplexml *
  • ext-tokenizer *
  • ext-xmlwriter *
  • php >=5.4.0

 

The Development Requires

by Greg Sherwood

phpcs standards

27/07 2018

3.3.1

3.3.1.0 http://www.squizlabs.com/php-codesniffer

PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.

  Sources   Download

BSD-3-Clause

The Requires

  • ext-simplexml *
  • ext-tokenizer *
  • ext-xmlwriter *
  • php >=5.4.0

 

The Development Requires

by Greg Sherwood

phpcs standards

07/06 2018

3.3.0

3.3.0.0 http://www.squizlabs.com/php-codesniffer

PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.

  Sources   Download

BSD-3-Clause

The Requires

  • ext-simplexml *
  • ext-tokenizer *
  • ext-xmlwriter *
  • php >=5.4.0

 

The Development Requires

by Greg Sherwood

phpcs standards

20/02 2018

3.2.3

3.2.3.0 http://www.squizlabs.com/php-codesniffer

PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.

  Sources   Download

BSD-3-Clause

The Requires

  • ext-simplexml *
  • ext-tokenizer *
  • ext-xmlwriter *
  • php >=5.4.0

 

The Development Requires

by Greg Sherwood

phpcs standards

12/02 2018

2.9.x-dev

2.9.9999999.9999999-dev http://www.squizlabs.com/php-codesniffer

PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.

  Sources   Download

BSD-3-Clause

The Requires

  • ext-simplexml *
  • ext-tokenizer *
  • ext-xmlwriter *
  • php >=5.1.2

 

The Development Requires

by Greg Sherwood

phpcs standards

19/12 2017

3.2.2

3.2.2.0 http://www.squizlabs.com/php-codesniffer

PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.

  Sources   Download

BSD-3-Clause

The Requires

  • ext-simplexml *
  • ext-tokenizer *
  • ext-xmlwriter *
  • php >=5.4.0

 

The Development Requires

by Greg Sherwood

phpcs standards

18/12 2017

3.2.1

3.2.1.0 http://www.squizlabs.com/php-codesniffer

PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.

  Sources   Download

BSD-3-Clause

The Requires

  • ext-simplexml *
  • ext-tokenizer *
  • ext-xmlwriter *
  • php >=5.4.0

 

The Development Requires

by Greg Sherwood

phpcs standards

12/12 2017

3.2.0

3.2.0.0 http://www.squizlabs.com/php-codesniffer

PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.

  Sources   Download

BSD-3-Clause

The Requires

  • ext-simplexml *
  • ext-tokenizer *
  • ext-xmlwriter *
  • php >=5.4.0

 

The Development Requires

by Greg Sherwood

phpcs standards

17/10 2017

3.1.1

3.1.1.0 http://www.squizlabs.com/php-codesniffer

PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.

  Sources   Download

BSD-3-Clause

The Requires

  • ext-simplexml *
  • ext-tokenizer *
  • ext-xmlwriter *
  • php >=5.4.0

 

The Development Requires

by Greg Sherwood

phpcs standards

20/09 2017

3.1.0

3.1.0.0 http://www.squizlabs.com/php-codesniffer

PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.

  Sources   Download

BSD-3-Clause

The Requires

  • ext-simplexml *
  • ext-tokenizer *
  • ext-xmlwriter *
  • php >=5.4.0

 

The Development Requires

by Greg Sherwood

phpcs standards

18/07 2017

3.0.2

3.0.2.0 http://www.squizlabs.com/php-codesniffer

PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.

  Sources   Download

BSD-3-Clause

The Requires

  • ext-simplexml *
  • ext-tokenizer *
  • ext-xmlwriter *
  • php >=5.4.0

 

The Development Requires

by Greg Sherwood

phpcs standards

14/06 2017

3.0.1

3.0.1.0 http://www.squizlabs.com/php-codesniffer

PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.

  Sources   Download

BSD-3-Clause

The Requires

  • ext-simplexml *
  • ext-tokenizer *
  • ext-xmlwriter *
  • php >=5.4.0

 

The Development Requires

by Greg Sherwood

phpcs standards

22/05 2017

2.9.1

2.9.1.0 http://www.squizlabs.com/php-codesniffer

PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.

  Sources   Download

BSD-3-Clause

The Requires

  • ext-simplexml *
  • ext-tokenizer *
  • ext-xmlwriter *
  • php >=5.1.2

 

The Development Requires

by Greg Sherwood

phpcs standards

04/05 2017

3.0.0

3.0.0.0 http://www.squizlabs.com/php-codesniffer

PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.

  Sources   Download

BSD-3-Clause

The Requires

  • ext-simplexml *
  • ext-tokenizer *
  • ext-xmlwriter *
  • php >=5.4.0

 

The Development Requires

by Greg Sherwood

phpcs standards

04/05 2017

2.9.0

2.9.0.0 http://www.squizlabs.com/php-codesniffer

PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.

  Sources   Download

BSD-3-Clause

The Requires

  • ext-simplexml *
  • ext-tokenizer *
  • ext-xmlwriter *
  • php >=5.1.2

 

The Development Requires

by Greg Sherwood

phpcs standards

01/05 2017

3.0.x-dev

3.0.9999999.9999999-dev http://www.squizlabs.com/php-codesniffer

PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.

  Sources   Download

BSD-3-Clause

The Requires

  • ext-simplexml *
  • ext-tokenizer *
  • ext-xmlwriter *
  • php >=5.4.0

 

The Development Requires

by Greg Sherwood

phpcs standards

01/03 2017

3.0.0RC4

3.0.0.0-RC4 http://www.squizlabs.com/php-codesniffer

PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.

  Sources   Download

BSD-3-Clause

The Requires

  • ext-simplexml *
  • ext-tokenizer *
  • ext-xmlwriter *
  • php >=5.4.0

 

The Development Requires

by Greg Sherwood

phpcs standards

01/03 2017

2.8.1

2.8.1.0 http://www.squizlabs.com/php-codesniffer

PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.

  Sources   Download

BSD-3-Clause

The Requires

  • ext-simplexml *
  • ext-tokenizer *
  • ext-xmlwriter *
  • php >=5.1.2

 

The Development Requires

by Greg Sherwood

phpcs standards

02/02 2017

3.0.0RC3

3.0.0.0-RC3 http://www.squizlabs.com/php-codesniffer

PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.

  Sources   Download

BSD-3-Clause

The Requires

  • ext-simplexml *
  • ext-tokenizer *
  • ext-xmlwriter *
  • php >=5.4.0

 

The Development Requires

by Greg Sherwood

phpcs standards

02/02 2017

2.8.0

2.8.0.0 http://www.squizlabs.com/php-codesniffer

PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.

  Sources   Download

BSD-3-Clause

The Requires

  • ext-simplexml *
  • ext-tokenizer *
  • ext-xmlwriter *
  • php >=5.1.2

 

The Development Requires

by Greg Sherwood

phpcs standards

30/11 2016

3.0.0RC2

3.0.0.0-RC2 http://www.squizlabs.com/php-codesniffer

PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.

  Sources   Download

BSD-3-Clause

The Requires

  • ext-simplexml *
  • ext-tokenizer *
  • ext-xmlwriter *
  • php >=5.4.0

 

The Development Requires

by Greg Sherwood

phpcs standards

30/11 2016

2.7.1

2.7.1.0 http://www.squizlabs.com/php-codesniffer

PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.

  Sources   Download

BSD-3-Clause

The Requires

  • ext-simplexml *
  • ext-tokenizer *
  • ext-xmlwriter *
  • php >=5.1.2

 

The Development Requires

by Greg Sherwood

phpcs standards

02/09 2016

3.0.0RC1

3.0.0.0-RC1 http://www.squizlabs.com/php-codesniffer

PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.

  Sources   Download

BSD-3-Clause

The Requires

  • ext-simplexml *
  • ext-tokenizer *
  • ext-xmlwriter *
  • php >=5.4.0

 

The Development Requires

by Greg Sherwood

phpcs standards

02/09 2016

2.7.0

2.7.0.0 http://www.squizlabs.com/php-codesniffer

PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.

  Sources   Download

BSD-3-Clause

The Requires

  • ext-simplexml *
  • ext-tokenizer *
  • ext-xmlwriter *
  • php >=5.1.2

 

The Development Requires

by Greg Sherwood

phpcs standards

20/07 2016

3.0.0a1

3.0.0.0-alpha1 http://www.squizlabs.com/php-codesniffer

PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.

  Sources   Download

BSD-3-Clause

The Requires

  • ext-simplexml *
  • ext-tokenizer *
  • ext-xmlwriter *
  • php >=5.4.0

 

The Development Requires

by Greg Sherwood

phpcs standards

14/07 2016

2.6.2

2.6.2.0 http://www.squizlabs.com/php-codesniffer

PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.

  Sources   Download

BSD-3-Clause

The Requires

  • ext-simplexml *
  • ext-tokenizer *
  • ext-xmlwriter *
  • php >=5.1.2

 

The Development Requires

by Greg Sherwood

phpcs standards

31/05 2016

2.6.1

2.6.1.0 http://www.squizlabs.com/php-codesniffer

PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.

  Sources   Download

BSD-3-Clause

The Requires

  • ext-simplexml *
  • ext-tokenizer *
  • ext-xmlwriter *
  • php >=5.1.2

 

The Development Requires

by Greg Sherwood

phpcs standards

04/04 2016

2.6.0

2.6.0.0 http://www.squizlabs.com/php-codesniffer

PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.

  Sources   Download

BSD-3-Clause

The Requires

  • ext-simplexml *
  • ext-tokenizer *
  • ext-xmlwriter *
  • php >=5.1.2

 

The Development Requires

by Greg Sherwood

phpcs standards

20/01 2016

2.5.1

2.5.1.0 http://www.squizlabs.com/php-codesniffer

PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.

  Sources   Download

BSD-3-Clause

The Requires

  • ext-tokenizer *
  • ext-xmlwriter *
  • php >=5.1.2

 

The Development Requires

by Greg Sherwood

phpcs standards

11/12 2015

2.5.0

2.5.0.0 http://www.squizlabs.com/php-codesniffer

PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.

  Sources   Download

BSD-3-Clause

The Requires

  • ext-tokenizer *
  • ext-xmlwriter *
  • php >=5.1.2

 

The Development Requires

by Greg Sherwood

phpcs standards

23/11 2015

2.4.0

2.4.0.0 http://www.squizlabs.com/php-codesniffer

PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.

  Sources   Download

BSD-3-Clause

The Requires

  • ext-tokenizer *
  • ext-xmlwriter *
  • php >=5.1.2

 

by Greg Sherwood

phpcs standards

09/09 2015

2.3.4

2.3.4.0 http://www.squizlabs.com/php-codesniffer

PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.

  Sources   Download

BSD-3-Clause

The Requires

  • ext-tokenizer *
  • ext-xmlwriter *
  • php >=5.1.2

 

by Greg Sherwood

phpcs standards

24/06 2015

2.3.3

2.3.3.0 http://www.squizlabs.com/php-codesniffer

PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.

  Sources   Download

BSD-3-Clause

The Requires

  • ext-tokenizer *
  • ext-xmlwriter *
  • php >=5.1.2

 

by Greg Sherwood

phpcs standards

29/04 2015

2.3.2

2.3.2.0 http://www.squizlabs.com/php-codesniffer

PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.

  Sources   Download

BSD-3-Clause

The Requires

  • ext-tokenizer *
  • ext-xmlwriter *
  • php >=5.1.2

 

by Greg Sherwood

phpcs standards

23/04 2015

2.3.1

2.3.1.0 http://www.squizlabs.com/php-codesniffer

PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.

  Sources   Download

BSD-3-Clause

The Requires

  • ext-tokenizer *
  • ext-xmlwriter *
  • php >=5.1.2

 

by Greg Sherwood

phpcs standards

04/03 2015

2.3.0

2.3.0.0 http://www.squizlabs.com/php-codesniffer

PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.

  Sources   Download

BSD-3-Clause

The Requires

  • ext-tokenizer *
  • ext-xmlwriter *
  • php >=5.1.2

 

by Greg Sherwood

phpcs standards

21/01 2015

2.2.0

2.2.0.0 http://www.squizlabs.com/php-codesniffer

PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.

  Sources   Download

BSD-3-Clause

The Requires

  • ext-tokenizer *
  • php >=5.1.2

 

by Greg Sherwood

phpcs standards

18/12 2014

2.1.0

2.1.0.0 http://www.squizlabs.com/php-codesniffer

PHP_CodeSniffer tokenises PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.

  Sources   Download

BSD-3-Clause

The Requires

  • ext-tokenizer *
  • php >=5.1.2

 

by Greg Sherwood

phpcs standards

05/12 2014

2.0.0

2.0.0.0 http://www.squizlabs.com/php-codesniffer

PHP_CodeSniffer tokenises PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.

  Sources   Download

BSD-3-Clause

The Requires

  • ext-tokenizer *
  • php >=5.1.2

 

by Greg Sherwood

phpcs standards

04/12 2014

1.5.x-dev

1.5.9999999.9999999-dev http://www.squizlabs.com/php-codesniffer

PHP_CodeSniffer tokenises PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.

  Sources   Download

BSD-3-Clause

The Requires

  • ext-tokenizer *
  • php >=5.1.2

 

by Greg Sherwood

phpcs standards

04/12 2014

1.5.6

1.5.6.0 http://www.squizlabs.com/php-codesniffer

PHP_CodeSniffer tokenises PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.

  Sources   Download

BSD-3-Clause

The Requires

  • ext-tokenizer *
  • php >=5.1.2

 

by Greg Sherwood

phpcs standards

06/11 2014

2.0.0RC4

2.0.0.0-RC4 http://www.squizlabs.com/php-codesniffer

PHP_CodeSniffer tokenises PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.

  Sources   Download

BSD-3-Clause

The Requires

  • ext-tokenizer *
  • php >=5.1.2

 

by Greg Sherwood

phpcs standards

16/10 2014

2.0.0RC3

2.0.0.0-RC3 http://www.squizlabs.com/php-codesniffer

PHP_CodeSniffer tokenises PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.

  Sources   Download

BSD-3-Clause

The Requires

  • ext-tokenizer *
  • php >=5.1.2

 

by Greg Sherwood

phpcs standards

26/09 2014

2.0.0RC2

2.0.0.0-RC2 http://www.squizlabs.com/php-codesniffer

PHP_CodeSniffer tokenises PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.

  Sources   Download

BSD-3-Clause

The Requires

  • ext-tokenizer *
  • php >=5.1.2

 

by Greg Sherwood

phpcs standards

25/09 2014

1.5.5

1.5.5.0 http://www.squizlabs.com/php-codesniffer

PHP_CodeSniffer tokenises PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.

  Sources   Download

BSD-3-Clause

The Requires

  • ext-tokenizer *
  • php >=5.1.2

 

by Greg Sherwood

phpcs standards

06/08 2014

2.0.0RC1

2.0.0.0-RC1 http://www.squizlabs.com/php-codesniffer

PHP_CodeSniffer tokenises PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.

  Sources   Download

BSD-3-Clause

The Requires

  • ext-tokenizer *
  • php >=5.1.2

 

by Greg Sherwood

phpcs standards

06/08 2014

1.5.4

1.5.4.0 http://www.squizlabs.com/php-codesniffer

PHP_CodeSniffer tokenises PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.

  Sources   Download

BSD-3-Clause

The Requires

  • ext-tokenizer *
  • php >=5.1.2

 

by Greg Sherwood

phpcs standards

01/05 2014

2.0.0a2

2.0.0.0-alpha2 http://www.squizlabs.com/php-codesniffer

PHP_CodeSniffer tokenises PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.

  Sources   Download

BSD-3-Clause

The Requires

  • ext-tokenizer *
  • php >=5.1.2

 

by Greg Sherwood

phpcs standards

01/05 2014

1.5.3

1.5.3.0 http://www.squizlabs.com/php-codesniffer

PHP_CodeSniffer tokenises PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.

  Sources   Download

BSD-3-Clause

The Requires

  • ext-tokenizer *
  • php >=5.1.2

 

by Greg Sherwood

phpcs standards

05/02 2014

2.0.0a1

2.0.0.0-alpha1 http://www.squizlabs.com/php-codesniffer

PHP_CodeSniffer tokenises PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.

  Sources   Download

BSD-3-Clause

The Requires

  • ext-tokenizer *
  • php >=5.1.2

 

by Greg Sherwood

phpcs standards

05/02 2014

1.5.2

1.5.2.0 http://www.squizlabs.com/php-codesniffer

PHP_CodeSniffer tokenises PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.

  Sources   Download

BSD-3-Clause

The Requires

  • ext-tokenizer *
  • php >=5.1.2

 

by Greg Sherwood

phpcs standards

12/12 2013

1.5.1

1.5.1.0 http://www.squizlabs.com/php-codesniffer

PHP_CodeSniffer tokenises PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.

  Sources   Download

BSD-3-Clause

The Requires

  • ext-tokenizer *
  • php >=5.1.2

 

by Greg Sherwood

phpcs standards

27/11 2013

1.5.0

1.5.0.0 http://www.squizlabs.com/php-codesniffer

PHP_CodeSniffer tokenises PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.

  Sources   Download

BSD-3-Clause

The Requires

  • ext-tokenizer *
  • php >=5.1.2

 

by Greg Sherwood

phpcs standards

25/11 2013

1.4.8

1.4.8.0 http://www.squizlabs.com/php-codesniffer

PHP_CodeSniffer tokenises PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.

  Sources   Download

BSD-3-Clause

The Requires

  • ext-tokenizer *
  • php >=5.1.2

 

by Greg Sherwood

phpcs standards

26/09 2013

1.5.0RC4

1.5.0.0-RC4 http://www.squizlabs.com/php-codesniffer

PHP_CodeSniffer tokenises PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.

  Sources   Download

BSD-3-Clause

The Requires

  • ext-tokenizer *
  • php >=5.1.2

 

by Greg Sherwood

phpcs standards

26/09 2013

1.4.7

1.4.7.0 http://www.squizlabs.com/php-codesniffer

PHP_CodeSniffer tokenises PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.

  Sources   Download

BSD-3-Clause

The Requires

  • ext-tokenizer *
  • php >=5.1.2

 

by Greg Sherwood

phpcs standards

25/07 2013

1.5.0RC3

1.5.0.0-RC3 http://www.squizlabs.com/php-codesniffer

PHP_CodeSniffer tokenises PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.

  Sources   Download

BSD-3-Clause

The Requires

  • ext-tokenizer *
  • php >=5.1.2

 

by Greg Sherwood

phpcs standards

25/07 2013

1.4.6

1.4.6.0 http://www.squizlabs.com/php-codesniffer

PHP_CodeSniffer tokenises PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.

  Sources   Download

BSD-3-Clause

The Requires

  • ext-tokenizer *
  • php >=5.1.2

 

by Greg Sherwood

phpcs standards

04/04 2013

1.5.0RC2

1.5.0.0-RC2 http://www.squizlabs.com/php-codesniffer

PHP_CodeSniffer tokenises PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.1.2

 

by Greg Sherwood

phpcs standards

04/04 2013

1.4.5

1.4.5.0 http://www.squizlabs.com/php-codesniffer

PHP_CodeSniffer tokenises PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.1.2

 

by Greg Sherwood

phpcs standards

08/02 2013

1.5.0RC1

1.5.0.0-RC1 http://www.squizlabs.com/php-codesniffer

PHP_CodeSniffer tokenises PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.1.2

 

by Greg Sherwood

phpcs standards

07/02 2013

1.4.4

1.4.4.0 http://www.squizlabs.com/php-codesniffer

PHP_CodeSniffer tokenises PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.1.2

 

by Greg Sherwood

phpcs standards

04/12 2012

1.4.3

1.4.3.0 http://www.squizlabs.com/php-codesniffer

PHP_CodeSniffer tokenises PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.1.2

 

by Greg Sherwood

phpcs standards

09/11 2012

1.4.2

1.4.2.0 http://www.squizlabs.com/php-codesniffer

PHP_CodeSniffer tokenises PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.

  Sources   Download

BSD-3-Clause

The Requires

  • php >=5.1.2

 

by Greg Sherwood

phpcs standards