How to use CodeSniffer on Windows ? How to setup the PHP CodeSniffer on Windows ? These questions come to mind when you see various articles, tutorials which provides ways/steps to setup this on Linux. So here are simple steps to setup PHP CodeSniffer on Windows. Before going into this, for those who don’t know what is CodeSniffer? here is a simple answer.
If you are a developer or code reviewer and you want to check the code for any mistakes/if the code following particular coding standards, then CodeSniffer is a good tool to achieve that.
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.
Now, lets setup CodeSniffer to check if our code follows a defined coding standard. ๐
My setup environment:
- Windows 7 Professional,
- XAMPP for Windows( Apache, MySQL, PHP and Perl ) and the PHP install directory is C:xamppphp
Steps:
- Open windows command prompt by going.
Start -> Run -> type in ‘ cmd ‘ -> press Enter - Go to your php install directory.
123cd C:xamppphp - Then type in the command to install PHP Code_Sniffer from the pear.php.net
1234pear install PHP_CodeSnifferpear install —alldeps PHP_CodeSniffer - After completion, to check successfull installation run this command.
123phpcs –i
As the CodeSniffer is installed now, you can start using this to check files by using below commands. ( To run any commands, you should be inside C:xamppphp )
Checking a single file or folder:
1 2 3 4 |
$ phpcs /path/to/code/myfile.inc $ phpcs /path/to/code/my_dir |
Sample PHP_CodeSniffer output with no warnings:
1 2 3 |
$ phpcs –n /path/to/code/myfile.php |
1 2 3 4 5 6 7 8 9 10 11 12 |
FILE: /path/to/code/myfile.php ———————————————————————————————————————— FOUND 5 ERROR(S) AFFECTING 5 LINE(S) ———————————————————————————————————————— 2 | ERROR | Missing file doc comment 20 | ERROR | PHP keywords must be lowercase; expected “false” but found “FALSE” 47 | ERROR | Line not indented correctly; expected 4 spaces but found 1 51 | ERROR | Missing function doc comment 88 | ERROR | Line not indented correctly; expected 9 spaces but found 6 ———————————————————————————————————————— |
Specifying a coding standard to use:
1 2 3 |
$ phpcs —standard=PEAR /path/to/code/myfile.inc |
For more usage commands: http://pear.php.net/manual/en/package.php.php-codesniffer.usage.php
How to add a new coding standard definition into PHP CodeSniffer ?
Lets take WordPress coding standard for demo purpose found here: https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards
Steps:
– If you have git installed on you machine, then run this command on git bash.
1 2 3 |
$ git clone git://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards.git C:/xampp/php/pear/PHP/CodeSniffer/Standards/WordPress |
If you don’t have git on your machine, then
- Download the zipped file from Github repository here: https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards/archive/master.zip
- Unzip it.
- Create a new directory named ‘ WordPress ‘ inside C:xamppphppearPHPCodeSnifferStandards
Note: This directory name should exactly match with the Coding Standard definition name ‘WordPress’ - Paste all the content of that zip file into this directory and you are done.
Now you can check any file for WordPress coding standard.
1 2 3 |
phpcs –n —standard=WordPress /path/to/code/cron.php |
12 responses to “How to setup PHP CodeSniffer on Windows machine ?”
[…] coding standard definition, then setup that standard before hand on CodeSniffer. How to do that ? Follow my previous post to know how to install CodeSniffer and various Coding Standard definitions. Go to the CodeSniffer setting tab on NetBeans and set the Coding Standard definition name there in […]
I got installed PHPCS on windows, I just comfirm with pear list comment ut when I try to use this comment on my windows comment prompt I am getting error like ‘phpcs’ is not recognized as an internal or external command
same error occurs…how to solve this?
I have my XAMPP installed in D: directory. It gives me error
ERROR: failed to mkdir C:\php\pear\tests\PHP_CodeSniffer\CodeSniffer\Core\File
I had the same error. But it works.
Install script probably uses hardcoded path.
Perfect article. I used it for XAMPP and PHPStorm.
Just had to specify full path to pear: c:\xampp\php\pear install […].
And it auto shows up in PHPStorm at code inspection to chose from.
Thank you very much.
i can not understand “phpcs -n –standard=WordPress /path/to/code/cron.php” this command how it will be used?
How to add CodeIgniter plugin, so that we can run the codeigniter projects and get error removed.
Hi Manoj, Thanks for stopping by. PHP CodeSnifer doesn’t automatically fix the coding standard issues. For that you may need to check this: https://github.com/FriendsOfPHP/PHP-CS-Fixer Regarding the CodeIgniter coding standards please fetch and setup this: https://github.com/thomas-ernest/CodeIgniter-for-PHP_CodeSniffer#installation Hope this helps ๐
I have my application hosted on IIS. Install was successful but while running “phpcs -i” getting this error. \iis was unexpected at this time.
How to install instructions:
***on Windows 10 you need to run cmd as administrator!***
Open windows command prompt by going.
Start -> Run -> type in โ cmd โ -> right-click and select “run as administrator”