Tpay's PHP coding standards
Run command:
composer require --dev tpay-com/coding-standards
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.