Skip to content

tpay-com/php-coding-standards

Repository files navigation

Tpay's PHP coding standards

Latest stable version PHP version License CI status Type coverage

Installation

Run command:

composer require --dev tpay-com/coding-standards

Usage

Create .php-cs-fixer.php file and use Tpay\CodingStandards\PhpCsFixerConfigFactory:

<?php

require __DIR__ . '/vendor/tpay-com/coding-standards/bootstrap.php';

return Tpay\CodingStandards\PhpCsFixerConfigFactory::createWithAllRules()
    ->setFinder(
        PhpCsFixer\Finder::create()
            ->ignoreDotFiles(false)
            ->in(__DIR__)
    );

Instead of createWithAllRules you can use method createWithNonRiskyRules to use only non-risky fixers.

Use method createWithLegacyRules to use only set of fixers that is safe down to PHP 5.6.