Search code examples
phppear

How use the Pear installed packages in windows


I have installed Pear and all the package I needed. (example like PHP_CodeSniffer, PhpDocumentor). I confirmed this package has installed using

C:\wamp\www>pear list

but 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 

Please give me any suggestion.


Solution

  • I have fixed this issue as per the below link.

    Alternative way to install PHP_CodeSniffer is to clone repository from GitHub:

    git clone git://github.com/squizlabs/PHP_CodeSniffer.git
    cd PHP_CodeSniffer
    php scripts/phpcs -h
    

    http://blog.a2design.biz/blog/2012/08/19/automation-of-php-coding-style-check-using-git-hooks/