diff --git a/.editorconfig b/.editorconfig deleted file mode 100644 index 68c55a9..0000000 --- a/.editorconfig +++ /dev/null @@ -1,14 +0,0 @@ -root = true - -[*] -charset = utf-8 -indent_style = space -indent_size = 2 -insert_final_newline = true -trim_trailing_whitespace = true - -[*.php] -indent_size = 4 - -[*.json,*.yml] -indent_size = 2 diff --git a/.php_cs.dist b/.php_cs.dist deleted file mode 100644 index 50a0d44..0000000 --- a/.php_cs.dist +++ /dev/null @@ -1,26 +0,0 @@ -path('command.php') - ->path('src/') - ->in(__DIR__) -; - -return PhpCsFixer\Config::create() - ->setRules([ - '@PSR2' => true, - 'array_syntax' => [ - 'syntax' => 'short' - ], - 'binary_operator_spaces' => [ - 'default' => 'align_single_space_minimal' - ], - 'ordered_imports' => true, - 'trailing_comma_in_multiline_array' => true, - 'concat_space' => [ - 'spacing' => 'one' - ], - 'blank_line_before_statement' => true - ]) - ->setFinder($finder) -;