taptima / phalyfusion
Utility for combining a bunch of php static code analyzers output.
Installs: 13 159
Dependents: 0
Suggesters: 0
Security: 0
Stars: 36
Watchers: 4
Forks: 3
Open Issues: 3
Type:application
pkg:composer/taptima/phalyfusion
Requires
- php: ^7.1
 - ext-json: *
 - composer/composer: ^1.10|^2.0
 - nette/neon: ^3.0
 - symfony/console: ^4.4|^5.0
 - symfony/process: ^4.4|^5.0
 
Requires (Dev)
- ext-ast: *
 - phan/phan: ^2.6
 - phpmd/phpmd: ^2.8
 - phpstan/phpstan: ^0.12.2
 - phpunit/phpunit: ^7.0
 - taptima/php-cs-fixer: ^1.0
 - vimeo/psalm: ^4.4
 
This package is auto-updated.
Last update: 2025-10-21 12:31:50 UTC
README
Phalyfusion is a tool for convenient and effective usage of multiple PHP static code analysers and QA tools. It runs analysers, combines its outputs and makes a single nice output in various formats:
- Nice PHPStan-like table console output, groups errors by the file.
 - Checkstyle
 - Json
 
Currently supported analysers and tools:
- PHPStan
 - Phan
 - Psalm
 - PHPMD
 - PHP-CS-Fixer. Run PHP-CS-Fixer with 
--dry-runoption. 
Table of contents
How it works
For example, phpstan, phan and phpmd are required in the project. Then the analyzer output looks like this (for example phan):
Phalyfusion combines the output of all analyzers and qa tools, groups them by file, and sorts them by line numbers. The resulting output looks like this:
Installation
composer require --dev taptima/phalyfusion dev-master
Composer will install Phalyfusion’s executable in its bin-dir which defaults to vendor/bin.
Analysers should be installed individually.
Usage
After installing Phalyfusion you need to create phalyfusion.neon configuration file in the project root.
Config sample
plugins: usePlugins: - phan - phpstan - psalm - phpmd - php-cs-fixer runCommands: phan: bin/phan -k .phan/config.php phpstan: bin/phpstan analyse -c phpstan.neon --level 7 psalm: bin/psalm -c psalm.xml phpmd: bin/phpmd src text cleancode php-cs-fixer: "bin/php-cs-fixer fix --config=.php_cs"
Provide names of analysers (plugins) you want to use in usePlugins. Choose from: phan, phpstan, psalm, phpmd or php-cs-fixer.
Provide command lines to run stated analysers. Paths are resolved relative to current working directory (the directory where from you are running Phalyfusion)
- Note that each analyser should be individually installed and configured.
 - All supported by individual analysers arguments and options can be used in the corresponding command line (runCommands)
 - Output formats of the analysers are overridden. To choose Phalyfusion output format use --format option when running.
 - File\path arguments of analysers are NOT guaranteed to be overridden in case you pass such argument to Phalyfusion.
 - Do not state path/files options/arguments in runCommands, use paths argument of Phalyfusion or configure it in configs.
 
Usage
After configuring the tool and all used analysers run Phalyfusion.
$ php phalyfusion analyse [options] [--] [<files>...]
The analyse is a default command to run all connected plugins, so it is optional to specify it. The simplest run command looks like:
$ php phalyfusion $ php phalyfusion analyse
Type $ php phalyfusion analyse --help to show all available options and arguments.
Arguments
The files argument is Paths to files with source code to run analysis on. Separate multiple with a space. Do not pass directories. File paths from command lines stated in phalyfusion.neon runCommands will be used by default.
Options
The -c, --config option is a path to neon config file. phalyfusion.neon located in project root is used by default.
The -f, --format option for the output format. Supported formats are table (default one), json, checkstyle.
The -p, --no-progress option to disable progress bar.
Contributing
See CONTRIBUTING file.

