PHPCheckstyle is an open-source tool that helps PHP programmers adhere to certain coding conventions. The tools checks the input PHP source code and reports any deviations from the coding convention.
The tool uses the PEAR Coding Standards as the default coding convention. But it allows you to configure it to suit your coding standards.
Please visit http://code.google.com/p/phpcheckstyle/ for more information and documentation
- PHP 5.0 or newer.
- Web browser to view the checkstyle report (only for html view)
- That's all.
Add jbrooksuk/phpcheckstyle as a requirement to composer.json:
{
"require": {
"jbrooksuk/phpcheckstyle": "dev-master"
}
}Update your packages with composer update or if installing from fresh, with composer install.
Just unzip the distribution.
$> unzip PhpCheckstyle.zipThis will create a directory called phpcheckstyle and expand all
files in it.
-
Change directory to the PHPCheckstyle installation directory.
$> cd phpcheckstyle
-
Execute the
run.phpscript providing the--srcoption.$> php run.php --src <php source directory/file>
-
Use the
--helpoption to see more options$> php run.php --help
See LICENSE