.php_cs add file for php-cs-fixer configuration

This commit is contained in:
Dariusz Rumiński
2014-07-24 18:37:42 +02:00
parent 0eb3e71dc8
commit 6381604484
+11
View File
@@ -0,0 +1,11 @@
<?php
return Symfony\CS\Config\Config::create()->finder(Symfony\CS\Finder\DefaultFinder::create()
->notName('LICENSE')
->notName('README.md')
->notName('composer.*')
->notName('phpunit.xml.*')
->notName('*.phar')
->exclude('vendor')
->in(__DIR__)
);