diff --git a/.php_cs.dist b/.php_cs.dist new file mode 100644 index 00000000..32f7d0fb --- /dev/null +++ b/.php_cs.dist @@ -0,0 +1,13 @@ +in(__DIR__ . '/src') + ->in(__DIR__ . '/tests') +; + +return PhpCsFixer\Config::create() + ->setRules([ + '@PSR2' => true, + 'array_syntax' => ['syntax' => 'short'], + ]) + ->setFinder($finder) +;