Files
testcontainers-php/.php-cs-fixer.dist.php
2022-10-22 23:59:29 +00:00

18 lines
473 B
PHP

<?php
/*
* This document has been generated with
* https://mlocati.github.io/php-cs-fixer-configurator/#version:3.12.0|configurator
* you can change this configuration by importing this file.
*/
$config = new \PhpCsFixer\Config();
return $config
->setRules([
'@PSR12' => true,
'@PHP81Migration' => true,
'no_unused_imports' => true,
])
->setFinder(PhpCsFixer\Finder::create()
->exclude('vendor')
->in(__DIR__)
)
;