From 6381604484166af3f91bd20c79b1c01fdaefa194 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dariusz=20Rumi=C5=84ski?= Date: Wed, 23 Jul 2014 20:13:24 +0200 Subject: [PATCH] .php_cs add file for php-cs-fixer configuration --- .php_cs | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .php_cs diff --git a/.php_cs b/.php_cs new file mode 100644 index 0000000..8d3b7d8 --- /dev/null +++ b/.php_cs @@ -0,0 +1,11 @@ +finder(Symfony\CS\Finder\DefaultFinder::create() + ->notName('LICENSE') + ->notName('README.md') + ->notName('composer.*') + ->notName('phpunit.xml.*') + ->notName('*.phar') + ->exclude('vendor') + ->in(__DIR__) +);