Authors |
Jérôme Tama, Akram Ben Aissi, Frédéric Leroy, Gabriele Santini |
Jira |
http://jira.codehaus.org/browse/SONARPLUGINS/component/13723 |
Latest Version |
0.2 ( check version compatibility ) |
License |
LGPL v3 |
Sources |
|
Download |
Features
Sonar PHP Plugin adds PHP language analysis to Sonar. The plugin provides all Sonar builtin features for PHP projects analyis. And it relies on well known analysis tools for PHP projects : PHP Unit, PHP Depend, PHPMD, PHPCPD and PHP_CodeSniffer to provide some additionnal metrics and to detect violations.
Sonar PHP Plugin |
PHP Unit |
phpcpd |
PHP Depend |
PHPMD |
PHP_CodeSniffer |
SQLI CodeSniffer |
|---|---|---|---|---|---|---|
0.2 |
3.4.12 |
|
0.9.12 |
0.2.5 |
|
0.4.0 |
0.3 |
3.5.5 |
1.3.1 |
0.9.14 |
0.2.5 |
1.3.0RC1 |
|
|
|
|
|
|
|
|
Version 0.2 relies on SQLI_CodeSniffer which is derived from PHP_CodeSniffer but incompatible with the original tool.
Installation
This installation section provides two way for installing necessary tools to make the plugin work correctly. If you are familiar with an environnement, you may just need to reed the "Short way" section, if you need more help, you can follow the more verbose installation guide for the section.
Install Sonar PHP Plugin
Sonar PHP Plugin is very straight forward: Once you have installed sonar in $SONAR_HOME directoy, just copy the sonar-php-plugin.jar file inside $SONAR_HOME/extensions/plugins/ directory.
Install PHP environnement
Short way for PHP experts
- Install PHP runtime with the corresponding xdebug extensions. Version 5.2.6 or newer is required.
- Install PEAR. Version 1.8.0 or newer is required
- Install PHPUnit version 3.5.5 (strictly)
- Install phpcpd version 1.3.0 (strictly)
- Install PHPDepend PHPMD version 0.2.5
- Install PHP_CodeSniffer version 1.3.0RC1
Long way for PHP dummies
- Install PHP version 5.2.6 or newer. You can download PHP at this location and follow these installation instructions.
- Install PEAR version 1.8.0 or newer if not included in PHP distribution. To ensure pear version and to upgrade it type the following commands in command prompt:
- Install PHP Unit from pear using the following command lines:
- Install XDebug to allow code instrumentation used for instance by phpunit to compute coverage.
- If you are running Linux or Mac you must install phpize (normally found in php dev packages like rpm php5-devel, deb php5-dev) and then compile xdebug via pecl install using the following command line
And then edit your $PHP_HOME/cli_php.ini file to add the following line:
- If you are running windows, you should download the binary version matching your PHP installation from this location. And then edit your $PHP_HOME/cli_php.ini file to add the following line:
- If you are running Linux or Mac you must install phpize (normally found in php dev packages like rpm php5-devel, deb php5-dev) and then compile xdebug via pecl install using the following command line
- Install PHP Depend
- Install PHPMD
- Install PHP_CodeSniffer
- Install phpcpd

