diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..1646bad --- /dev/null +++ b/.gitattributes @@ -0,0 +1,4 @@ +* text=auto + +/.gitattributes export-ignore +/.php-cs-fixer.php export-ignore diff --git a/.php-cs-fixer.php b/.php-cs-fixer.php new file mode 100644 index 0000000..f0512a0 --- /dev/null +++ b/.php-cs-fixer.php @@ -0,0 +1,13 @@ +in(__DIR__) +; + +$config = new PhpCsFixer\Config(); +return $config->setRules([ + '@PHP73Migration' => true, + '@PSR12' => true + ]) + ->setFinder($finder) +; \ No newline at end of file