Easy steps to install phpstan package on Mac

Package Information:

Application Name – phpstan
What is phpstan – PHPStan focuses on finding errors in your code without actually running it. It catches whole classes of bugs even before you write tests for the code. It moves …
Use of phpstan – PHP Static Analysis Tool
URL – https://github.com/phpstan/phpstan

Installation Steps:

  1. Open Terminal using Spotlight search by pressing  <command+space>. Type terminal and hit  Enter  key.
  2. spotlight search terminal

  3. Now, run following command to install homebrew (brew)
  4. ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" < /dev/null 2> /dev/null

    Homebrew Install Command Screenshot

  5. Install phpstan using brew
    brew install phpstan

phpstan  is ready to use now!