tpay-com / coding-standards
Tpay.com coding standards library
1.1.1
2025-08-13 12:43 UTC
Requires
- php: ^7.4 || ^8.0
- friendsofphp/php-cs-fixer: ^3.22
- kubawerlos/php-cs-fixer-custom-fixers: ^3.16.2
Requires (Dev)
- phpunit/phpunit: ^9.6.11
- vimeo/psalm: ^5.15.0
README
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.