From fda4a594f904ff0032a4e4b4370b28e7685c31c0 Mon Sep 17 00:00:00 2001 From: Jordi Boggiano Date: Wed, 15 Apr 2015 01:21:35 +0100 Subject: [PATCH] Add PHPCSFixer config --- .gitignore | 1 + .php_cs | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+) create mode 100644 .php_cs diff --git a/.gitignore b/.gitignore index 0e883e5c1..f9d78df20 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,4 @@ phpunit.xml .vagrant Vagrantfile .idea +.php_cs.cache \ No newline at end of file diff --git a/.php_cs b/.php_cs new file mode 100644 index 000000000..90f0b97de --- /dev/null +++ b/.php_cs @@ -0,0 +1,18 @@ +files() + ->name('*.php') + ->exclude('Fixtures') + ->in(__DIR__.'/src') + ->in(__DIR__.'/tests') +; + +return Symfony\CS\Config\Config::create() + ->setUsingCache(true) + ->level(Symfony\CS\FixerInterface::NONE_LEVEL) + ->fixers(array( + 'psr0', 'encoding', 'short_tag', 'braces', 'elseif', 'eof_ending', 'function_declaration', 'indentation', 'line_after_namespace', 'linefeed', 'lowercase_constants', 'lowercase_keywords', 'multiple_use', 'php_closing_tag', 'trailing_spaces', 'visibility', 'duplicate_semicolon', 'extra_empty_lines', 'include', 'namespace_no_leading_whitespace', 'object_operator', 'operators_spaces', 'phpdoc_params', 'return', 'single_array_no_trailing_comma', 'spaces_cast', 'standardize_not_equal', 'ternary_spaces', 'unused_use', 'whitespacy_lines', + )) + ->finder($finder) +;