Skip to content

Commit f64a73b

Browse files
author
symfony-flex-server[bot]
authored
Merge pull request #867
2 parents 4b0b80c + d7cd2d2 commit f64a73b

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?php
2+
3+
$finder = PhpCsFixer\Finder::create()
4+
->in(__DIR__)
5+
->exclude('var')
6+
;
7+
8+
return PhpCsFixer\Config::create()
9+
->setRules([
10+
'@Symfony' => true,
11+
])
12+
->setFinder($finder)
13+
;
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"aliases": ["cs-fixer", "php-cs-fixer"],
3+
"copy-from-recipe": {
4+
".php_cs.dist": ".php_cs.dist"
5+
},
6+
"gitignore": [
7+
"/.php_cs",
8+
"/.php_cs.cache"
9+
]
10+
}

0 commit comments

Comments
 (0)