Port the old system to a more advanced setup.

This commit is contained in:
2019-03-03 16:16:31 +01:00
parent 04ae63035a
commit bfea8896de
14 changed files with 168 additions and 33 deletions

12
.php_cs Normal file
View File

@@ -0,0 +1,12 @@
<?php
$finder = PhpCsFixer\Finder::create()
->exclude('vendor')
->in(__DIR__);
return PhpCsFixer\Config::create()
->setUsingCache(true)
->setRules([
'@PSR2' => true,
'single_quote' => true,
])->setFinder($finder);