There was an error while loading. Please reload this page.
1 parent dae9449 commit c375d3fCopy full SHA for c375d3f
.gitignore
@@ -2,6 +2,7 @@
2
/doc/
3
*.iml
4
composer.phar
5
+.php_cs.cache
6
.vagrant
7
integration-tests/vendor
8
composer.lock
.php_cs
@@ -0,0 +1,10 @@
1
+<?php
+
+$finder = PhpCsFixer\Finder::create()->in(__DIR__);
+return PhpCsFixer\Config::create()
+ ->setFinder($finder)
+ ->setUsingCache(true)
+ ->setRules([
9
+ '@PSR2' => true,
10
+ ]);
0 commit comments