Ver código fonte

.php_cs add file for php-cs-fixer configuration

Dariusz Rumiński 11 anos atrás
pai
commit
6381604484
1 arquivos alterados com 11 adições e 0 exclusões
  1. 11 0
      .php_cs

+ 11 - 0
.php_cs

@@ -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__)
+);