initial commit

This commit is contained in:
R. Eric Wheeler 2021-01-01 12:32:07 -08:00
parent 36352310bc
commit c7d809a867
2 changed files with 0 additions and 18 deletions

4
.gitignore vendored
View File

@ -1,4 +0,0 @@
.php_cs
.idea/
.php_cs.cache
vendor/

View File

@ -1,14 +0,0 @@
<?php
$finder = PhpCsFixer\Finder::create()
->in(__DIR__)
->exclude('var')
;
return PhpCsFixer\Config::create()
->setRules([
'@Symfony' => true,
'array_syntax' => ['syntax' => 'short'],
])
->setFinder($finder)
;