Schedule a Free Consultation
Install Php Code Sniffer on Windows & PHPStorm

Install Php Code Sniffer on Windows & PHPStorm

Read Article

If you are concerned about delivering high-quality code, compliant with WordPress coding standards, you’d better use an automated tool for these checks.

PHP Code Sniffer together with PHPStorm editor is a great and powerful combination as you get all these code checks in real time, as you type your code.

There are many great tutorials on how to install PHP Code Sniffer with PHPStorm on Mac, but we did not find any article explaining how to install and configure these tools on Windows.

So here’s a small contribution for those who need to check their code on Windows:

  • Using Composer
  • Using PEAR
    • Install PHP. Suggested are bundle: XAMPP OR WAMP
      1. Restart computer
      2. XAMPP ship with PEAR and PHP_CodeSniffer you can skip steps 2-
      3. To check if PHP_CodeSniffer is installer run this command in CMD: phpcs -i
    • Add System Environment variable: https://www.screencast.com/t/1zs1WY31l with link to PHP.exe from BIN folder
    • How to install PEAR(if needed)
      1. Download from: http://pear.php.net/go-pear.phar
      2. Copy PEAR to php location
      3. Open CMD to this location. Can be done two ways
        1. RUN -> write cmd -> CD into your php server folder
        2. Open Explorer -> go to PHP location -> SHIFT + RIGHT CLICK there and open SHELL
      4. RUN command php go-pear.phar
        1. Check folder settings to be OK
        2. Follow on screen details and complete installation
    • Install PHP_CodeSniffer
      1. Run command from cmd(see step 3-C-i and 3-C-ii) pear install PHP_CodeSniffer from PHP -> PEAR folder
      2. Download WORDPRESS STANDARDS from https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards/archive/master.zip
      3. Unpack the archive folders: https://www.screencast.com/t/jgucqIDo to ~phpPEARphpCodeSniffersrcStandards where ~ means path to PHP
    • For Updates you need to download the WORDPRESS STANDARDS from the link above and copy them to CodeSniffer location.
  • PHPStorm settings – is suggested to work on “default settings” dialog (from File)

Reference:
https://github.com/squizlabs/PHP_CodeSniffer
https://w3guy.com/setup-php-code-sniffer-phpstorm-windows/
https://kellenmace.com/set-up-php-codesniffer-in-phpstorm-with-wordpress-coding-standards/

Navigate to

You Might Also Enjoy These Digital Marketing Articles:

What You Should Know About the Wordpress Divi Theme - WPRiders Article
What You Should Know About the WordPress Divi Theme
If you’re exploring premium themes for your next WordPress project, chances are you’ve already heard of WordPress Divi. It’s one of the most popular themes in the WordPress ecosystem — known for its visual builder, flexibility, and ease of use for non-developers. In this article, we’ll walk through the story behind WordPress Divi, explore its […]
How to Create the Perfect Landing Page in WordPress - WPRiders Article
How to Create the Perfect Landing Page in WordPress
Winter Is Coming This may or may not be a Game of Thrones reference, but it’s definitely true — winter is coming. Days are getting shorter, temperatures are dropping, and soon we’ll all be slipping on icy sidewalks. The same goes for your marketing: if you’re not prepared, things can get messy fast. That’s why […]
PHP Remote File Existence
PHP Remote File Existence
This is one of the good ways to check if a file exists in a remote location. Another good way to implement a similar functionality is to use CURL.