phormat

[WIP]PHP code formatter.

BSD-3-CLAUSE License

Downloads
26.8K
Stars
0

Phormat

PHP code formatter.

[!WARNING]

This project is not finished yet, work in progress.

Installation

You can install the package via composer:

composer require ghostwriter/phormat

Star ⭐️ this repo if you find it useful

You can also star (🌟) this repo to find it easier later.

Usage

vendor/bin/phormat <path> --dry-run

Configuration

<?php

declare(strict_types=1);

use Ghostwriter\Phormat\NodeVisitor\PERCSNodeVisitor;
use Ghostwriter\Phormat\PhormatConfig;

/** @var non-empty-string $workingDirectory */
$workingDirectory = \getcwd() ?: __DIR__;

/** @psalm-suppress UncaughtThrowInGlobalScope */
return PhormatConfig::new()
    ->paths($workingDirectory . '/bin', $workingDirectory . '/src', $workingDirectory . '/tests')
    ->skip($workingDirectory . '/.cache', $workingDirectory . '/docs', $workingDirectory . '/vendor')
    ->skipVisitors([
        PERCSNodeVisitor::class => [$workingDirectory . '/tests/Fixture'],
    ]);

Credits

Changelog

Please see CHANGELOG.md for more information on what has changed recently.

License

Please see LICENSE for more information on the license that applies to this project.

Security

Please see SECURITY.md for more information on security disclosure process.