isislabs/php_codesniffer_codeigniter

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

1.5.0RC1 2013-02-08 03:21 UTC

This package is not auto-updated.

Last update: 2024-09-22 03:39:16 UTC


README

THIS IS A FORK FROM Squizlabs...just added a standard for CodeIgniter framework.

PHP_CodeSniffer is a PHP5 script that tokenises PHP, JavaScript and CSS files to detect violations of a defined coding standard. It is an essential development tool that ensures your code remains clean and consistent. It can also help prevent some common semantic errors made by developers.

Build Status

Requirements

PHP_CodeSniffer requires PHP version 5.1.2 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.

The SVN pre-commit hook requires PHP version 5.2.4 or greater due to its use of the vertical whitespace character.

Installation

If you use Composer, include a dependency for isislabs/php_codesniffer in your composer.json file. For example:

{
    "require": {
        "isislabs/php_codesniffer": "1.*"
    }
}

You will then be able to run PHP_CodeSniffer from the vendor bin directory:

./vendor/bin/phpcs -h

Documentation

The documentation for PHP_CodeSniffer is available in the PEAR manual.

Information about upcoming features and releases is available on the Squiz Labs blog.