PHP Parallel Lint
This application checks syntax of PHP files in parallel.
It can output in plain text, colored text, json and checksyntax formats.
Additionally blame can be used to show commits that introduced the breakage.
Running parallel jobs in PHP is inspired by Nette framework tests.
The application is officially supported for use with PHP 5.3 to 8.0.
Table of contents
- Installation
- Example output
- History
- Command line options
- Recommended excludes for Symfony framework
- Create Phar package
- How to upgrade
Installation
Install with composer as development dependency:
composer require --dev php-parallel-lint/php-parallel-lint
Alternatively you can install as a standalone composer project:
composer create-project php-parallel-lint/php-parallel-lint /path/to/folder/php-parallel-lint
/path/to/folder/php-parallel-lint/parallel-lint # running tool
For colored output, install the suggested package php-parallel-lint/php-console-highlighter:
composer require --dev php-parallel-lint/php-console-highlighter
Example output
History
This project was originally created by @JakubOnderka and released as jakub-onderka/php-parallel-lint.
Since then, Jakub has moved on to other interests and as of January 2020, the second most active maintainer @grogy has taken over maintenance of the project and given the project - and related dependencies - a new home in the PHP Parallel Lint organisation.
It is strongly recommended for existing users of the (unmaintained) jakub-onderka/php-parallel-lint package to switch their dependency to php-parallel-lint/php-parallel-lint, see How to upgrade below.
Command line options
-p <php>Specify PHP-CGI executable to run (default: 'php').-s, --shortSet short_open_tag to On (default: Off).-a, --aspSet asp_tags to On (default: Off).-e <ext>Check only files with selected extensions separated by comma. (default: php,php3,php4,php5,phtml,phpt)--excludeExclude a file or directory. If you want exclude multiple items, use multiple exclude parameters.-j <num>Run jobs in parallel (default: 10).--colorsForce enable colors in console output.--no-colorsDisable colors in console output.--no-progressDisable progress in console output.--checkstyleOutput results as Checkstyle XML.--jsonOutput results as JSON string (requires PHP 5.4).--gitlabOutput results for the GitLab Code Quality widget (requires PHP 5.4), see more in Code Quality documentation.--blameTry to show git blame for row with error.--git <git>Path to Git executable to show blame message (default: 'git').--stdinLoad files and folder to test from standard input.--ignore-failsIgnore failed tests.--syntax-error-callbackFile with syntax error callback for ability to modify error, see more in example-h, --helpPrint this help.-V, --versionDisplay this application version.
Recommended excludes for Symfony framework
To run from the command line:
vendor/bin/parallel-lint --exclude app --exclude vendor .
Create Phar package
PHP Parallel Lint supports Box app for creating Phar package. First, install box app:
curl -LSs https://box-project.github.io/box2/installer.php | php
then run the build command in parallel lint folder, which creates parallel-lint.phar file.
box build
How to upgrade
Are you using jakub-onderka/php-parallel-lint package? You can switch to php-parallel-lint/php-parallel-lint using:
composer remove --dev jakub-onderka/php-parallel-lint
composer require --dev php-parallel-lint/php-parallel-lint
