Merge pull request #912

This commit is contained in:
symfony-flex-server[bot]
2021-03-20 16:34:45 +00:00
committed by GitHub
2 changed files with 23 additions and 0 deletions
@@ -0,0 +1,13 @@
<?php
$finder = (new PhpCsFixer\Finder())
->in(__DIR__)
->exclude('var')
;
return (new PhpCsFixer\Config())
->setRules([
'@Symfony' => true,
])
->setFinder($finder)
;
@@ -0,0 +1,10 @@
{
"aliases": ["cs-fixer", "php-cs-fixer"],
"copy-from-recipe": {
".php_cs.dist": ".php_cs.dist"
},
"gitignore": [
"/.php_cs",
"/.php_cs.cache"
]
}