ticketswap / phpstan-error-formatter
A minimalistic error formatter for PHPStan
Installs: 50 689
Dependents: 5
Suggesters: 0
Security: 0
Stars: 78
Watchers: 6
Forks: 1
Open Issues: 0
Type:phpstan-extension
Requires
- php: ^7.4|^8.0
- phpstan/phpstan: ^1.12.4
Requires (Dev)
- phpunit/phpunit: ^9.6
README
A minimalistic error formatter for PHPStan
Features
- Every error has it's own clickable file + line link (default formatter shows the file once, and then displays the line + errors)
- Errors don't wrap, so they take your while terminal (default formatter wraps in a table)
- Highlighting of variables, fully qualified class names and other common types. This is done naively and there are cases where it does not work.
- Long file paths are truncated visually (src/App/../Entity/User.php) while keeping the clickable link intact
- The filename + line is clickable depending on your terminal and their support for clickable links. For example, in PHPStorm's built-in editor, it doesn't work and there we print
file:///Volumes/CS/www/src/App/User.php
.
Installation
To use this extension, require it in Composer:
composer require --dev ticketswap/phpstan-error-formatter
If you also install phpstan/extension-installer then you're all set!
Manual installation
If you don't want to use phpstan/extension-installer
, include extension.neon in your project's PHPStan config:
includes: - vendor/ticketswap/phpstan-error-formatter/extension.neon
Usage
Configure PHPStan to use the ticketswap
error formatter:
parameters: errorFormat: ticketswap
When you haven't done so, make sure to configure the editorUrl:
parameters: editorUrl: 'phpstorm://open?file=%%file%%&line=%%line%%'