diff --git a/.php-cs-fixer.dist.php b/.php-cs-fixer.dist.php new file mode 100644 index 00000000..f2bd1ae1 --- /dev/null +++ b/.php-cs-fixer.dist.php @@ -0,0 +1,19 @@ +exclude('ext/amazon_s3/lib') + ->exclude('vendor') + ->exclude('data') + ->in(__DIR__) +; + +$config = new PhpCsFixer\Config(); +return $config->setRules([ + '@PSR12' => true, + //'strict_param' => true, + 'array_syntax' => ['syntax' => 'short'], + ]) + ->setFinder($finder) +; + +?>