We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e198392 commit 2b7c28dCopy full SHA for 2b7c28d
.gitignore
@@ -1,3 +1,4 @@
1
+/.php_cs.cache
2
/behat.yml
3
/build/
4
/composer.lock
.php_cs
.php_cs.dist
@@ -0,0 +1,14 @@
+<?php
+
+$finder = PhpCsFixer\Finder::create()
+ ->exclude('Resources')
5
+ ->exclude('vendor')
6
+ ->in(__DIR__)
7
+;
8
9
+return PhpCsFixer\Config::create()
10
+ ->setRules([
11
+ '@Symfony' => true,
12
+ 'array_syntax' => ['syntax' => 'short'],
13
+ ])
14
+ ->setFinder($finder);
.styleci.yml
0 commit comments