walkeralencar/ci-php-analyzer

Advanced Static Analysis of and Auto-Fixer for PHP Code

dev-master 2014-05-13 18:06 UTC

This package is not auto-updated.

Last update: 2024-04-13 14:50:20 UTC


README

The PHP Analyzer performs static analysis on your source code to help you find errors and bugs, and also has built-in heuristics to automatically fix some of them.

Learn more in the documentation.

Installation

Please note that PHP Analyzer itself needs a PHP 5.4 runtime; this requirement only applies to the system that is running PHP Analyzer, not the code that is analyzed.

Standalone

PHPAnalyzer can be installed via composer very easily:

composer create-project scrutinizer/php-analyzer:dev-master

Embedded

PHPAnalyzer can also be embedded in an existing project:

{
    "repositories": [
        {
            "type": "vcs",
            "url": "https://github.com/schmittjoh/PHP-Parser"
        }
    ],
    "require-dev": {
        "scrutinizer/php-analyzer": "*@dev",
        "scrutinizer/utils": "*@dev",
        "jms/php-manipulator": "*@dev",
        "nikic/php-parser": "*@dev"
    }
}

Usage

Via The Command Line

php bin/phpalizer run some-dir

The CLI is especially useful to analyze smaller libraries, or for testing purposes.