update libraries.

This commit is contained in:
2021-06-02 10:26:49 +09:00
parent cf78855dcd
commit 15b5ca4a3f
6 changed files with 451 additions and 404 deletions

16
.php-cs-fixer.php Normal file
View File

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